Browse code

Fixed minor compile issue in ntlm.c (mid-block declaration).

git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3222 e7ae566f-a301-0410-adde-c780ea21d3b5

james authored on 2008/08/11 22:12:34
Showing 1 changed files
... ...
@@ -280,8 +280,10 @@ ntlm_phase_3 (const struct http_proxy_info *p, const char *phase_2, struct gc_ar
280 280
 		if (( *((long *)&buf2[0x14]) & 0x00800000) == 0x00800000){ /* Check for Target Information block */
281 281
 			tib_len = buf2[0x28];/* Get Target Information block size */
282 282
 			if (tib_len > 96) tib_len = 96;
283
-			char *tib_ptr = buf2 + buf2[0x2c]; /* Get Target Information block pointer */
284
-			memcpy(&ntlmv2_blob[0x1c], tib_ptr, tib_len); /* Copy Target Information block into the blob */
283
+			{
284
+			  char *tib_ptr = buf2 + buf2[0x2c]; /* Get Target Information block pointer */
285
+			  memcpy(&ntlmv2_blob[0x1c], tib_ptr, tib_len); /* Copy Target Information block into the blob */
286
+			}
285 287
 		} else {
286 288
 			tib_len = 0;
287 289
 		}