mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r9790: remove 'set but not used' variables (reported by Jason Mader)
(This used to be commit 9c78f3b0d6
)
This commit is contained in:
parent
a206a5efdd
commit
2f626e7b5a
@ -650,7 +650,6 @@ static BOOL open_sockets(BOOL isdaemon, int port)
|
||||
pstring logfile;
|
||||
static BOOL opt_interactive;
|
||||
poptContext pc;
|
||||
int opt;
|
||||
struct poptOption long_options[] = {
|
||||
POPT_AUTOHELP
|
||||
{"daemon", 'D', POPT_ARG_VAL, &is_daemon, True, "Become a daemon(default)" },
|
||||
@ -666,7 +665,7 @@ static BOOL open_sockets(BOOL isdaemon, int port)
|
||||
global_nmb_port = NMB_PORT;
|
||||
|
||||
pc = poptGetContext("nmbd", argc, argv, long_options, 0);
|
||||
while ((opt = poptGetNextOpt(pc)) != -1) ;
|
||||
while (poptGetNextOpt(pc) != -1) {};
|
||||
poptFreeContext(pc);
|
||||
|
||||
global_in_nmbd = True;
|
||||
|
@ -1331,13 +1331,12 @@ static void printers_page(void)
|
||||
**/
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int opt;
|
||||
const char *page;
|
||||
poptContext pc;
|
||||
struct poptOption long_options[] = {
|
||||
POPT_AUTOHELP
|
||||
{ "disable-authentication", 'a', POPT_ARG_VAL, &demo_mode, True, "Disable authentication (demo mode)" },
|
||||
{ "password-menu-only", 'P', POPT_ARG_VAL, &passwd_only, True, "Show only change password menu" },
|
||||
{ "password-menu-only", 'P', POPT_ARG_VAL, &passwd_only, True, "Show only change password menu" },
|
||||
POPT_COMMON_SAMBA
|
||||
POPT_TABLEEND
|
||||
};
|
||||
@ -1368,7 +1367,7 @@ static void printers_page(void)
|
||||
|
||||
/* Parse command line options */
|
||||
|
||||
while((opt = poptGetNextOpt(pc)) != -1) { }
|
||||
while(poptGetNextOpt(pc) != -1) { }
|
||||
|
||||
poptFreeContext(pc);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user