diff options
-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 996678225e..e5fa3a4bf7 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; |