diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-09-21 08:48:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-09-21 08:48:48 +0000 |
commit | 6f6dfa97a80cb1da3ea82d02cc855000e7b5ea95 (patch) | |
tree | 4604dbd3cbb579c2f1da819727a9ee0ffae541b1 /lib | |
parent | aa8a2fbde304b985ef3647249b0dd1c51c40fa45 (diff) |
Uses the new interface to ssend() and the base64 encoder
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/lib/http.c b/lib/http.c index c835b1313..d4a3da1c0 100644 --- a/lib/http.c +++ b/lib/http.c @@ -287,7 +287,7 @@ CURLcode http(struct connectdata *conn) } if((data->bits.user_passwd) && !checkheaders(data, "Authorization:")) { - char authorization[512]; + char *authorization; /* To prevent the user+password to get sent to other than the original host due to a location-follow, we do some weirdo checks here */ @@ -295,9 +295,12 @@ CURLcode http(struct connectdata *conn) !data->auth_host || strequal(data->auth_host, data->hostname)) { sprintf(data->buffer, "%s:%s", data->user, data->passwd); - base64Encode(data->buffer, authorization); - data->ptr_userpwd = maprintf( "Authorization: Basic %s\015\012", - authorization); + if(base64Encode(data->buffer, 0, /* size zero makes it do strlen() */ + &authorization) >= 0) { + data->ptr_userpwd = maprintf( "Authorization: Basic %s\015\012", + authorization); + free(authorization); + } } } if((data->bits.set_range) && !checkheaders(data, "Range:")) { @@ -520,9 +523,9 @@ CURLcode http(struct connectdata *conn) /* and here comes the actual data */ if(data->postfieldsize) { - ssend(data->firstsocket, data, "\r\n", 2); - ssend(data->firstsocket, data, data->postfields, data->postfieldsize); - ssend(data->firstsocket, data, "\r\n", 2); + ssend(data->firstsocket, conn, "\r\n", 2); + ssend(data->firstsocket, conn, data->postfields, data->postfieldsize); + ssend(data->firstsocket, conn, "\r\n", 2); } sendf(data->firstsocket, data, "\r\n" |