From fb667783ac59959ac37f1ae8b6b29c32addc5e1b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 30 Jun 2004 02:05:26 +0000 Subject: r1305: Grrr, fix my build breakage... Declare variables at the start of a block. Andrew Bartlett (This used to be commit 9f5394703e81db9ed93648e06e48b0364a04a696) --- source4/utils/ntlm_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/utils') 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); } -- cgit