From 77df5c87c69ea7f929df211c41da522248d73cfc Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 11 Sep 1997 02:30:00 +0000 Subject: fix a couple of "declaration shadows previous local" warnings. (This used to be commit c30f6a74d0e6c256b1d46b28c1f31f1c1f3dd856) --- source3/nameannounce.c | 6 +++--- source3/utils/smbpasswd.c | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/nameannounce.c b/source3/nameannounce.c index 684ef41258..96641c2d77 100644 --- a/source3/nameannounce.c +++ b/source3/nameannounce.c @@ -383,7 +383,6 @@ void announce_master(time_t t) for (d = FIRST_SUBNET; d; d = NEXT_SUBNET_EXCLUDING_WINS(d)) { - struct work_record *work; for (work = d->workgrouplist; work; work = work->next) { if (AM_MASTER(work)) @@ -437,9 +436,10 @@ workgroup %s\n", am_master, work->work_group)); /* We are the WINS server - query ourselves for the dmb name. */ struct nmb_name netb_name; - struct subnet_record *d = 0; struct name_record *nr = 0; - + + d = NULL; + make_nmb_name(&netb_name, name, type, scope); if ((nr = find_name_search(&d, &netb_name, FIND_WINS, ipzero)) == 0) diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index 161555d52c..92abce8d8f 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -417,10 +417,8 @@ static void usage(char *name) /* Create a new smb passwd entry and set it to the given password. */ { int fd; - int i; int new_entry_length; char *new_entry; - char *p; long offpos; /* The add user write needs to be atomic - so get the fd from -- cgit