summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-06-30 02:05:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:49 -0500
commitfb667783ac59959ac37f1ae8b6b29c32addc5e1b (patch)
tree67f4bcb68297eff9877f671bdc703f1a1c69ea05
parentdc9f55dbec5f892b39d924d5fd033b5eec1e14e4 (diff)
downloadsamba-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)
-rw-r--r--source4/utils/ntlm_auth.c2
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);
}