diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2020-01-23 09:20:43 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2020-01-23 09:20:43 +0100 |
commit | 8215753402584a387a3b22c366d0f8e4115ccf76 (patch) | |
tree | 772e38ec7fea40d78f73d04c90346ced58dcb373 /src | |
parent | 10d27a0d42b51776900dba9c2f386b4b0d0d4e39 (diff) | |
download | libssh-8215753402584a387a3b22c366d0f8e4115ccf76.tar.gz libssh-8215753402584a387a3b22c366d0f8e4115ccf76.tar.xz libssh-8215753402584a387a3b22c366d0f8e4115ccf76.zip |
misc: Make the src pointer const in ssh_strreplace()
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1799,7 +1799,7 @@ err: * @returns src_replaced a pointer that points to the replaced string. * NULL if allocation fails or if src is NULL. */ -char *ssh_strreplace(char *src, const char *pattern, const char *replace) +char *ssh_strreplace(const char *src, const char *pattern, const char *replace) { char *p = NULL; char *src_replaced = NULL; |