From: "Shawn O. Pearce" <spearce@spearce.org>
To: Scott Chacon <schacon@gmail.com>
Cc: git list <git@vger.kernel.org>
Subject: Re: [PATCH] Prompt for a username when an HTTP request 401s
Date: Thu, 18 Mar 2010 12:03:09 -0700 [thread overview]
Message-ID: <20100318190309.GC10981@spearce.org> (raw)
In-Reply-To: <d411cc4a1003181157o79f1a1e1qcdea05322d76b812@mail.gmail.com>
Scott Chacon <schacon@gmail.com> wrote:
> When an HTTP request returns a 401, Git will currently fail with a
> confusing message saying that it got a 401. This changes
> http_request to prompt for the username and password, then return
> HTTP_REAUTH so http_get_strbuf can try again. If it gets a 401 even
> when a user/pass is supplied, http_request will now return HTTP_NOAUTH
> which remote_curl can then use to display a more intelligent error
> message that is less confusing.
>
> Signed-off-by: Scott Chacon <schacon@gmail.com>
> ---
> http.c | 21 +++++++++++++++++++--
> http.h | 2 ++
> remote-curl.c | 2 ++
> 3 files changed, 23 insertions(+), 2 deletions(-)
>
> diff --git a/http.c b/http.c
> index deab595..731783e 100644
> --- a/http.c
> +++ b/http.c
> @@ -199,6 +199,11 @@ static int http_options(const char *var, const
> char *value, void *cb)
> return git_default_config(var, value, cb);
> }
>
> +static void get_http_user_name()
> +{
> + user_name = xstrdup(getpass("Username: "));
Why are we getting the username via a password prompt where echo
has been disabled? Traditionally a username field is obtained as
echoed input.
Also, this method shouldn't be named get_*() if its returning void.
Sounds far to funny. init_http_user_name()? prompt_for_user_name()?
--
Shawn.
next prev parent reply other threads:[~2010-03-18 19:03 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-18 18:57 [PATCH] Prompt for a username when an HTTP request 401s Scott Chacon
2010-03-18 19:03 ` Shawn O. Pearce [this message]
2010-03-18 23:53 ` René Scharfe
-- strict thread matches above, loose matches on Subject: below --
2010-03-19 3:41 Scott Chacon
2010-03-19 9:13 ` Tay Ray Chuan
2010-03-19 9:34 ` Daniel Stenberg
2010-03-19 14:16 ` Shawn O. Pearce
2010-03-19 14:32 ` Shawn O. Pearce
2010-03-19 19:08 ` Scott Chacon
2010-03-19 19:09 ` Shawn O. Pearce
2010-03-19 19:27 ` Junio C Hamano
2010-03-19 19:17 Scott Chacon
2010-04-01 20:29 Scott Chacon
2010-04-01 21:30 ` Junio C Hamano
2010-04-01 22:06 ` Scott Chacon
2010-04-01 22:14 Scott Chacon
2010-04-02 6:39 ` Junio C Hamano
2010-04-02 15:43 ` Scott Chacon
2010-04-02 16:11 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100318190309.GC10981@spearce.org \
--to=spearce@spearce.org \
--cc=git@vger.kernel.org \
--cc=schacon@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).