1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

argc == 0 is an impossible condition.

This commit is contained in:
Tim Potter -
parent 5ba4ba3633
commit 5b195f8bf1

View File

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