diff options
Diffstat (limited to 'url.c')
-rw-r--r-- | url.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1839,6 +1839,7 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current, #ifdef USE_GOPHER case SCM_GOPHER: p = pu->file; + q = p; n = 0; while(*p == '/') { ++p; @@ -1853,6 +1854,8 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current, case 's': case 'g': case 'h': + case '7': + case '9': tmp = Strnew_charp(pu->file); gophertmp = Strdup(tmp); Strdelete(tmp, n, 1); @@ -1865,6 +1868,17 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current, } else { type = '\0'; } + while(*p != '\0') { + if(*p == '?') + *p = '\t'; + ++p; + } + if(pu->query != NULL) { + tmp = Strnew_charp(pu->file); + Strcat_char(tmp, '\t'); + Strcat_charp(tmp, pu->query); + pu->file = tmp->ptr; + } if (non_null(GOPHER_proxy) && !Do_not_use_proxy && pu->host != NULL && !check_no_proxy(pu->host)) { |