diff options
Diffstat (limited to 'lisp/url/url-auth.el')
-rw-r--r-- | lisp/url/url-auth.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index b78544e3f37..b9643c279ff 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -193,7 +193,7 @@ key cache `url-digest-auth-storage'." (defun url-digest-auth-make-cnonce () "Compute a new unique client nonce value." (base64-encode-string - (format "%016x%016x" (random) (car (encode-time nil t))) + (format "%016x%016x" (random) (car (time-convert nil t))) t)) (defun url-digest-auth-nonce-count (_nonce) |