diff options
author | Jeremy Allison <jra@samba.org> | 1997-12-24 04:32:01 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1997-12-24 04:32:01 +0000 |
commit | 5f38824696c86c35f3f0a98af8e6d623c3d2fcb3 (patch) | |
tree | fe21a9acb78e0775bdd8aa8df2ef894e792da5eb /source3/client/client.c | |
parent | 6f429912e7a2d8c3f83a92adb914cd89a55af43d (diff) | |
download | samba-5f38824696c86c35f3f0a98af8e6d623c3d2fcb3.tar.gz samba-5f38824696c86c35f3f0a98af8e6d623c3d2fcb3.tar.xz samba-5f38824696c86c35f3f0a98af8e6d623c3d2fcb3.zip |
Bugfix from Branko Cibej <branko.cibej@hermes.si>
- client.c had a workaround embedded in it for his
earlier bug in StrnCaseCmp - removed this.
Jeremy.
(This used to be commit 7cb4e4b099cef0be3a7440bd5feb8b3d0c3c5f18)
Diffstat (limited to 'source3/client/client.c')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 996678225ed..e5fa3a4bf71 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3250,7 +3250,7 @@ static int process_tok(fstring tok) cmd = i; break; } - else if (strnequal(commands[i].name, tok, tok_len+1)) + else if (strnequal(commands[i].name, tok, tok_len)) { matches++; cmd = i; |