git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Amos King <amos.l.king@gmail.com>
To: git@vger.kernel.org
Cc: Junio C Hamano <gitster@pobox.com>,
	Johannes Schindelin <Johannes.Schindelin@gmx.de>
Subject: [PATCH 2/2] Allow http authentication via prompt for http push.
Date: Thu, 19 Mar 2009 10:12:57 -0500	[thread overview]
Message-ID: <d8c371a80903190812w59febbd3qc6bc3d70ce85f76e@mail.gmail.com> (raw)

There is now a faux remote created in order to
be passed to http_init.

Signed-off-by: Amos King <amos.l.king@gmail.com>
---
 http-push.c |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/http-push.c b/http-push.c
index 9ac2664..468d5af 100644
--- a/http-push.c
+++ b/http-push.c
@@ -2195,7 +2195,16 @@ int main(int argc, char **argv)

 	memset(remote_dir_exists, -1, 256);

-	http_init(NULL);
+	/*
+	 * This is a faked remote so that http_init can
+	 * get the correct data for builidng out athorization.
+	 */
+	struct remote *remote;
+	remote = xcalloc(sizeof(*remote), 1);
+	ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
+	remote->url[remote->url_nr++] = repo->url;
+
+	http_init(remote);

 	no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");

-- 
1.6.2.GIT

             reply	other threads:[~2009-03-19 15:14 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-19 15:12 Amos King [this message]
2009-03-19 16:59 ` [PATCH 2/2] Allow http authentication via prompt for http push Johannes Schindelin
2009-03-19 19:02   ` Amos King
2009-03-20  8:49     ` Michael J Gruber
2009-03-20 12:38       ` Amos King
2009-03-20 13:25         ` Michael J Gruber
2009-03-19 23:22   ` Amos King

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=d8c371a80903190812w59febbd3qc6bc3d70ce85f76e@mail.gmail.com \
    --to=amos.l.king@gmail.com \
    --cc=Johannes.Schindelin@gmx.de \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.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).