From: Steve Holme Date: Mon, 2 Jun 2014 22:09:42 +0000 (+0100) Subject: curl_sasl: Fixed copy/paste error of now.tv_sec in commit eefeb73af4 X-Git-Tag: curl-7_37_1~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62a26ec6962944383704c2b2a77fdb062200e814;p=curl curl_sasl: Fixed copy/paste error of now.tv_sec in commit eefeb73af4 --- diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c index 5edc0efc1..164c329f8 100644 --- a/lib/curl_sasl.c +++ b/lib/curl_sasl.c @@ -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 */