From d04aeaace97b5328de5fb6b04b843a1f18ea30f0 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 19 Feb 2002 06:13:16 +0000 Subject: 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) --- source3/smbd/mangle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/mangle.c') 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); -- cgit