* lisp/url/url-auth.el (url-basic-auth): Pass the parsed URL
object to the prompting function instead of the parameter that's
possibly a string (bug#26708). Passing url-basic-auth with a
string parameter would fail if passed a non-parsed URL.
((and prompt (not byserv))
(setq user (or
(url-do-auth-source-search server type :user)
- (read-string (url-auth-user-prompt url realm)
+ (read-string (url-auth-user-prompt href realm)
(or user (user-real-login-name))))
pass (or
(url-do-auth-source-search server type :secret)
(progn
(setq user (or
(url-do-auth-source-search server type :user)
- (read-string (url-auth-user-prompt url realm)
+ (read-string (url-auth-user-prompt href realm)
(user-real-login-name)))
pass (or
(url-do-auth-source-search server type :secret)