[w3m-dev 03914] a fragment in the Referer URI

* url.c (otherinfo): strip URI fragment
From: ABE Yuji <cbo46560@pop12.odn.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2003-06-17 18:02:41 +00:00
parent 73c3738780
commit 228e3a7915
2 changed files with 15 additions and 3 deletions

11
url.c
View File

@@ -1,4 +1,4 @@
/* $Id: url.c,v 1.79 2003/05/10 18:20:29 ukai Exp $ */
/* $Id: url.c,v 1.80 2003/06/17 18:02:41 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -1279,13 +1279,20 @@ otherinfo(ParsedURL *target, ParsedURL *current, char *referer)
if (referer == NULL && current && current->scheme != SCM_LOCAL &&
(current->scheme != SCM_FTP ||
(current->user == NULL && current->pass == NULL))) {
char *p = current->label;
Strcat_charp(s, "Referer: ");
current->label = NULL;
Strcat(s, parsedURL2Str(current));
current->label = p;
Strcat_charp(s, "\r\n");
}
else if (referer != NULL && referer != NO_REFERER) {
char *p = strchr(referer, '#');
Strcat_charp(s, "Referer: ");
Strcat_charp(s, referer);
if (p)
Strcat_charp_n(s, referer, p - referer);
else
Strcat_charp(s, referer);
Strcat_charp(s, "\r\n");
}
}