code police: narrow source to < 80 columns
authorDaniel Stenberg <daniel@haxx.se>
Thu, 5 Jul 2012 22:19:41 +0000 (00:19 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 5 Jul 2012 22:19:41 +0000 (00:19 +0200)
lib/curl_ntlm_msgs.c

index 94f71c8..8e788d7 100644 (file)
@@ -419,7 +419,8 @@ CURLcode Curl_ntlm_create_type1_message(const char *userp,
       return CURLE_OUT_OF_MEMORY;
     }
     ntlm->identity.Password = dup_passwd.tbyte_ptr;
-    ntlm->identity.PasswordLength = curlx_uztoul(_tcslen(dup_passwd.tchar_ptr));
+    ntlm->identity.PasswordLength =
+      curlx_uztoul(_tcslen(dup_passwd.tchar_ptr));
     dup_passwd.tchar_ptr = NULL;
 
     Curl_unicodefree(passwd.tchar_ptr);