diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-07-06 00:19:41 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-07-06 00:19:41 +0200 |
commit | 4ac56b9d9f48080b240ce13f0f350ba418972e80 (patch) | |
tree | 0a0bd9bee9ebab203d139ec23d99a46567d2fa2b | |
parent | b1f64d3a2a2989cfc79893f63881017645390056 (diff) |
code police: narrow source to < 80 columns
-rw-r--r-- | lib/curl_ntlm_msgs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index 94f71c836..8e788d733 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -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); |