From 6383b362039f1dffe380903f571c275576cb38d3 Mon Sep 17 00:00:00 2001 From: james Date: Sun, 10 Aug 2008 19:29:00 +0000 Subject: Fixed build issue with ./configure --disable-socks --disable-http. Fixed separate compile errors in options.c and ntlm.c that occur on strict C compilers (such as old versions of gcc) that require that C variable declarations occur at the start of a {} block, not in the middle. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3219 e7ae566f-a301-0410-adde-c780ea21d3b5 --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'options.c') diff --git a/options.c b/options.c index ccbbffa..69f3731 100644 --- a/options.c +++ b/options.c @@ -3249,9 +3249,9 @@ add_option (struct options *options, struct env_set *es) { struct gc_arena gc = gc_new (); - ASSERT (MAX_PARMS >= 5); const bool pull_mode = BOOL_CAST (permission_mask & OPT_P_PULL_MODE); + ASSERT (MAX_PARMS >= 5); if (!file) { file = "[CMD-LINE]"; -- cgit v1.2.3