Commit 62a26ec6 authored by Steve Holme's avatar Steve Holme
Browse files

curl_sasl: Fixed copy/paste error of now.tv_sec in commit eefeb73a

parent 1b59ef69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */