summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1997-12-24 04:32:01 +0000
committerJeremy Allison <jra@samba.org>1997-12-24 04:32:01 +0000
commit7cb4e4b099cef0be3a7440bd5feb8b3d0c3c5f18 (patch)
tree16fde1e9af768a61b1a1286776a5fac2d9420467
parentce9acc96a6cbc91f0a3f95221c3e8f801cbdb602 (diff)
downloadsamba-7cb4e4b099cef0be3a7440bd5feb8b3d0c3c5f18.tar.gz
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.
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 996678225ed..e5fa3a4bf71 100644
--- a/source/client/client.c
+++ b/source/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;