mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
curl_sasl: Fixed copy/paste error of now.tv_sec in commit eefeb73af4
This commit is contained in:
parent
1b59ef6990
commit
62a26ec696
@ -459,7 +459,7 @@ CURLcode Curl_sasl_create_digest_md5_message(struct SessionHandle *data,
|
|||||||
cnonce2 = Curl_rand(data);
|
cnonce2 = Curl_rand(data);
|
||||||
now = Curl_tvnow();
|
now = Curl_tvnow();
|
||||||
cnonce3 = now.tv_sec;
|
cnonce3 = now.tv_sec;
|
||||||
cnonce4 = now.tv_sec;
|
cnonce4 = now.tv_usec;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Convert the random data into a 32 byte hex string */
|
/* Convert the random data into a 32 byte hex string */
|
||||||
|
Loading…
Reference in New Issue
Block a user