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

argc == 0 is an impossible condition.

(This used to be commit 5b195f8bf1)
This commit is contained in:
Tim Potter 2002-03-07 04:03:21 +00:00
parent 0876fb4113
commit b89b7d4d12

View File

@ -574,7 +574,8 @@ static void usage(void)
AllowDebugChange = False;
/* Parse options */
if (argc == 0) {
if (argc == 1) {
usage();
return 0;
}