diff options
author | Tim Potter <tpot@samba.org> | 2002-08-15 22:03:22 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-08-15 22:03:22 +0000 |
commit | 298f956eaf7cbd362be8494f315a49d126a2c0ea (patch) | |
tree | d85bc1c62399958f2a81b44e2b09c517d30aa375 /source3/nmbd | |
parent | 9b38f76ab10a015ade9da2c5c9bafd43e3ef258c (diff) | |
download | samba-298f956eaf7cbd362be8494f315a49d126a2c0ea.tar.gz samba-298f956eaf7cbd362be8494f315a49d126a2c0ea.tar.bz2 samba-298f956eaf7cbd362be8494f315a49d126a2c0ea.zip |
The unused variable was actually needed. The correct fix is to move
it inside an #ifdef HAVE_ADS to avoid the warning and breaking the
build. (-:
(This used to be commit a8c4febdb760beb669048c2bf2bb0a0b1c5ed472)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd_processlogon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_processlogon.c b/source3/nmbd/nmbd_processlogon.c index a9952ff72b..d6605d08f5 100644 --- a/source3/nmbd/nmbd_processlogon.c +++ b/source3/nmbd/nmbd_processlogon.c @@ -305,7 +305,7 @@ reporting %s domain %s 0x%x ntversion=%x lm_nt token=%x lm_20 token=%x\n", else { GUID domain_guid; pstring domain; - char *component, *dc; + char *component, *dc, *q1; uint8 size; safe_strcpy(domain, lp_realm(), sizeof(domain)); |