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/smbwrapper/chdir.c | |
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/smbwrapper/chdir.c')
-rw-r--r-- | source3/smbwrapper/chdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbwrapper/chdir.c b/source3/smbwrapper/chdir.c index 41b3772603..3648e4431f 100644 --- a/source3/smbwrapper/chdir.c +++ b/source3/smbwrapper/chdir.c @@ -25,7 +25,7 @@ __asm__(".globl __chdir; __chdir = chdir"); #endif - int chdir(__const char *name) + int chdir(const char *name) { return smbw_chdir(name); } |