1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

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 7cb4e4b099)
This commit is contained in:
Jeremy Allison 1997-12-24 04:32:01 +00:00
parent 6f429912e7
commit 5f38824696

View File

@ -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;