From 2f626e7b5ad2d921490723e32863bd423e8272cd Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Tue, 30 Aug 2005 11:41:45 +0000 Subject: r9790: remove 'set but not used' variables (reported by Jason Mader) (This used to be commit 9c78f3b0d6c36854e082a89cb1ee5b80fcc9fe35) --- source3/nmbd/nmbd.c | 3 +-- source3/web/swat.c | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 97e22943b1..bc58dd3a28 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -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; diff --git a/source3/web/swat.c b/source3/web/swat.c index 43dacb2945..15612484a3 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -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); -- cgit