http: use newer curl options for setting credentials
commit6f4c347ca1d3102d77e2dd36b6bc8ab12de6045b
authorJeff King <peff@peff.net>
Fri, 13 Apr 2012 06:19:25 +0000 (13 02:19 -0400)
committerJunio C Hamano <gitster@pobox.com>
Sat, 14 Apr 2012 23:04:25 +0000 (14 16:04 -0700)
treee08adc42dce7137227225d044cc5386da9ac837d
parentaa0834a04e1d9d3ab81ecd4a4a138233e6e234ed
http: use newer curl options for setting credentials

We give the username and password to curl by sticking them
in a buffer of the form "user:pass" and handing the result
to CURLOPT_USERPWD. Since curl 7.19.1, there is a split
mechanism, where you can specify each element individually.

This has the advantage that a username can contain a ":"
character. It also is less code for us, since we can hand
our strings over to curl directly. And since curl 7.17.0 and
higher promise to copy the strings for us, we we don't even
have to worry about memory ownership issues.

Unfortunately, we have to keep the ugly code for old curl
around, but as it is now nicely #if'd out, we can easily get
rid of it when we decide that 7.19.1 is "old enough".

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http.c