diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-03 09:39:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-03 09:39:11 +0000 |
commit | cce5f09a90b5027bafd22f42edab9c256789bce1 (patch) | |
tree | 3347082ec53c1503b961e08852efedf29a65d41f /source3/lib | |
parent | 8a9fc22a6f0ea99312c3a86eff3ee1365d45a9f1 (diff) | |
download | samba-cce5f09a90b5027bafd22f42edab9c256789bce1.tar.gz samba-cce5f09a90b5027bafd22f42edab9c256789bce1.tar.bz2 samba-cce5f09a90b5027bafd22f42edab9c256789bce1.zip |
added unlink() and rename() support to smbwrapper
(This used to be commit b85d96144728e8a29c7c1114462e28bf3b144b80)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 35c97b1404..2738bc894a 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -4596,7 +4596,7 @@ int unistrcpy(char *dst, char *src) safe string copy into a known length string. maxlength does not include the terminating zero. ********************************************************************/ -char *safe_strcpy(char *dest, char *src, int maxlength) +char *safe_strcpy(char *dest,const char *src, int maxlength) { int len; |