diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-06-30 02:05:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:49 -0500 |
commit | fb667783ac59959ac37f1ae8b6b29c32addc5e1b (patch) | |
tree | 67f4bcb68297eff9877f671bdc703f1a1c69ea05 /source4/utils | |
parent | dc9f55dbec5f892b39d924d5fd033b5eec1e14e4 (diff) | |
download | samba-fb667783ac59959ac37f1ae8b6b29c32addc5e1b.tar.gz samba-fb667783ac59959ac37f1ae8b6b29c32addc5e1b.tar.bz2 samba-fb667783ac59959ac37f1ae8b6b29c32addc5e1b.zip |
r1305: Grrr, fix my build breakage...
Declare variables at the start of a block.
Andrew Bartlett
(This used to be commit 9f5394703e81db9ed93648e06e48b0364a04a696)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/utils/ntlm_auth.c b/source4/utils/ntlm_auth.c index 1ae9075fba..1685f8387f 100644 --- a/source4/utils/ntlm_auth.c +++ b/source4/utils/ntlm_auth.c @@ -702,10 +702,10 @@ static void manage_squid_request(enum stdio_helper_mode helper_mode, stdio_helpe } static void squid_stream(enum stdio_helper_mode stdio_mode, stdio_helper_function fn) { + void *private = NULL; /* initialize FDescs */ x_setbuf(x_stdout, NULL); x_setbuf(x_stderr, NULL); - void *private = NULL; while(1) { manage_squid_request(stdio_mode, fn, &private); } |