in dos_unmangle() the only function call was to *mangle()*. Adding the
authorAndrew Bartlett <abartlet@samba.org>
Tue, 19 Feb 2002 06:13:16 +0000 (06:13 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 19 Feb 2002 06:13:16 +0000 (06:13 +0000)
'un' dramaticly increses the functionality of this code :-).

Andrew Bartlett
(This used to be commit 15b9b63db57901fbfa3d62b64212742f361ee519)

source3/smbd/mangle.c

index ecdf82270c0ee106f1e316bbf710a6a4bf5e72d5..d396989e86c6583f503f8d5a69ba85ab4f2858fd 100644 (file)
@@ -515,7 +515,7 @@ char *dos_unmangle(const char *dos_mangled)
                return NULL;
        }
 
-       out = mangle(in);
+       out = unmangle(in);
        if (!out)
        {
                SAFE_FREE(in);