diff options
author | Tim Prouty <tprouty@samba.org> | 2008-11-03 12:36:34 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2008-11-03 14:44:38 -0800 |
commit | 2efacde8c4346130227728f11a98481ed1e01515 (patch) | |
tree | 88136a5e20bc70b80bc6d4df55a174db5bff1a56 /source3/nmbd | |
parent | 4f25c779243ba38fce26dea51feafcf28492d79b (diff) | |
download | samba-2efacde8c4346130227728f11a98481ed1e01515.tar.gz samba-2efacde8c4346130227728f11a98481ed1e01515.tar.bz2 samba-2efacde8c4346130227728f11a98481ed1e01515.zip |
s3: fix a few "shadows a global declaration" warnings
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index adc331cc3e..d1ab3aaacb 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -803,12 +803,12 @@ static bool open_sockets(bool isdaemon, int port) sys_srandom(time(NULL) ^ sys_getpid()); if (!override_logfile) { - char *logfile = NULL; - if (asprintf(&logfile, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) { + char *lfile = NULL; + if (asprintf(&lfile, "%s/log.nmbd", get_dyn_LOGFILEBASE()) < 0) { exit(1); } - lp_set_logfile(logfile); - SAFE_FREE(logfile); + lp_set_logfile(lfile); + SAFE_FREE(lfile); } fault_setup((void (*)(void *))fault_continue ); |