diff options
author | Martin Pool <mbp@samba.org> | 2002-01-14 06:34:53 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-01-14 06:34:53 +0000 |
commit | 6059f407637327b01ce008dd09634e4a3bbf8f1b (patch) | |
tree | af06d5b5342a6ab23eb925a599dde9704f2698d1 /source3/libads | |
parent | 1b6c848c1063a2a99d0d7515a6b0af61e7c59cf3 (diff) | |
download | samba-6059f407637327b01ce008dd09634e4a3bbf8f1b.tar.gz samba-6059f407637327b01ce008dd09634e4a3bbf8f1b.tar.xz samba-6059f407637327b01ce008dd09634e4a3bbf8f1b.zip |
Move local variable to avoid warning when compiled without GSSAPI.
(This used to be commit 312c6d906e64d231ff3c2f37e61d752cc948ee7b)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ads_status.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/libads/ads_status.c b/source3/libads/ads_status.c index a28fd7b6713..d54ce9745aa 100644 --- a/source3/libads/ads_status.c +++ b/source3/libads/ads_status.c @@ -52,7 +52,6 @@ NTSTATUS ads_ntstatus(ADS_STATUS rc) */ const char *ads_errstr(ADS_STATUS status) { - uint32 minor; int msg_ctx; static char *ret; @@ -73,6 +72,8 @@ const char *ads_errstr(ADS_STATUS status) #ifdef HAVE_GSSAPI case ADS_ERROR_GSS: { + uint32 minor; + gss_buffer_desc msg1, msg2; msg1.value = NULL; msg2.value = NULL; |