aboutsummaryrefslogtreecommitdiff
path: root/src/IO/http.c
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2008-12-20 20:31:44 -0300
committerJorge Arellano Cid <jcid@dillo.org>2008-12-20 20:31:44 -0300
commit98c25153adbd82548b67c18f098bb68835bfa329 (patch)
treea11565a2feae955b78269a60d9fdc87b247a6688 /src/IO/http.c
parent9b532026d3fc5c379827351c4da8b219012cb1c7 (diff)
Minor fixes in auth.c
Diffstat (limited to 'src/IO/http.c')
-rw-r--r--src/IO/http.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IO/http.c b/src/IO/http.c
index 9deb961a..328a8601 100644
--- a/src/IO/http.c
+++ b/src/IO/http.c
@@ -197,7 +197,8 @@ Dstr *Http_make_content_type(const DilloUrl *url)
*/
Dstr *a_Http_make_query_str(const DilloUrl *url, bool_t use_proxy)
{
- char *ptr, *cookies, *auth, *referer;
+ const char *auth;
+ char *ptr, *cookies, *referer;
Dstr *query = dStr_new(""),
*full_path = dStr_new(""),
*proxy_auth = dStr_new("");