curl_sasl: Fixed copy/paste error of now.tv_sec in commit eefeb73af4
authorSteve Holme <steve_holme@hotmail.com>
Mon, 2 Jun 2014 22:09:42 +0000 (23:09 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Mon, 2 Jun 2014 22:15:15 +0000 (23:15 +0100)
lib/curl_sasl.c

index 5edc0ef..164c329 100644 (file)
@@ -459,7 +459,7 @@ CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data,
   cnonce2 = Curl_rand(data);
   now = Curl_tvnow();
   cnonce3 = now.tv_sec;
-  cnonce4 = now.tv_sec;
+  cnonce4 = now.tv_usec;
 #endif
 
   /* Convert the random data into a 32 byte hex string */