diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-02-19 06:13:16 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-02-19 06:13:16 +0000 |
commit | d04aeaace97b5328de5fb6b04b843a1f18ea30f0 (patch) | |
tree | fb407f2f5d156683eb7966add74b2b4dcadb6cdf /source3/smbd | |
parent | 902cc03807f83167ff9a1d93a09844b27eba6ada (diff) | |
download | samba-d04aeaace97b5328de5fb6b04b843a1f18ea30f0.tar.gz samba-d04aeaace97b5328de5fb6b04b843a1f18ea30f0.tar.bz2 samba-d04aeaace97b5328de5fb6b04b843a1f18ea30f0.zip |
in dos_unmangle() the only function call was to *mangle()*. Adding the
'un' dramaticly increses the functionality of this code :-).
Andrew Bartlett
(This used to be commit 15b9b63db57901fbfa3d62b64212742f361ee519)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/mangle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/mangle.c b/source3/smbd/mangle.c index ecdf82270c..d396989e86 100644 --- a/source3/smbd/mangle.c +++ b/source3/smbd/mangle.c @@ -515,7 +515,7 @@ char *dos_unmangle(const char *dos_mangled) return NULL; } - out = mangle(in); + out = unmangle(in); if (!out) { SAFE_FREE(in); |