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

smbtree: don't ignore unknown options

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14828

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Ralph Boehme 2021-09-10 07:13:48 +02:00
parent d841457aed
commit 5562674a21

View File

@ -102,6 +102,7 @@ int main(int argc, char *argv[])
struct smbc_dirent *dirent = NULL;
bool ok;
int ret, result = 1;
int opt;
int debuglevel;
/* Initialise samba stuff */
@ -129,7 +130,16 @@ int main(int argc, char *argv[])
exit(1);
}
while(poptGetNextOpt(pc) != -1);
while((opt = poptGetNextOpt(pc)) != -1) {
switch (opt) {
case POPT_ERROR_BADOPT:
fprintf(stderr, "\nInvalid option %s: %s\n\n",
poptBadOption(pc, 0), poptStrerror(opt));
poptPrintUsage(pc, stderr, 0);
exit(1);
}
}
samba_cmdline_burn(argc, argv);
debuglevel = DEBUGLEVEL;