aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-10-22 18:48:09 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-10-22 18:48:09 +0000
commit44fdbe22fc0cda04554035282a4444c6173b974d (patch)
tree646cce413c7450c6e8d811cbb1adf44e506e7cea /url.c
parent[w3m-dev 04010] support for deprecated __ss_family (diff)
downloadw3m-44fdbe22fc0cda04554035282a4444c6173b974d.tar.gz
w3m-44fdbe22fc0cda04554035282a4444c6173b974d.zip
[w3m-dev 04011] accessing to an `https' URI with a fragment via a proxy
* url.c (HTTPrequestURI): drop fragment (openURL): don't clear pu->label From: ABE Yuji <cbo46560@pop12.odn.ne.jp>
Diffstat (limited to 'url.c')
-rw-r--r--url.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/url.c b/url.c
index c213947..48ece16 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.85 2003/10/20 16:41:56 ukai Exp $ */
+/* $Id: url.c,v 1.86 2003/10/22 18:48:09 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -1340,7 +1340,10 @@ HTTPrequestURI(ParsedURL *pu, HRequest *hr)
}
}
else {
+ char *save_label = pu->label;
+ pu->label = NULL;
Strcat(tmp, _parsedURL2Str(pu, TRUE));
+ pu->label = save_label;
}
return tmp;
}
@@ -1627,7 +1630,6 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current,
#endif /* USE_SSL */
non_null(HTTP_proxy)) && !Do_not_use_proxy &&
pu->host != NULL && !check_no_proxy(pu->host)) {
- char *save_label;
hr->flag |= HR_FLAG_PROXY;
#ifdef USE_SSL
if (pu->scheme == SCM_HTTPS && *status == HTST_CONNECT) {
@@ -1659,8 +1661,6 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current,
#endif
return uf;
}
- save_label = pu->label;
- pu->label = NULL;
#ifdef USE_SSL
if (pu->scheme == SCM_HTTPS) {
if (*status == HTST_NORMAL) {
@@ -1679,7 +1679,6 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current,
{
tmp = HTTPrequest(pu, current, hr, extra_header);
*status = HTST_NORMAL;
- pu->label = save_label;
}
}
else {