aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2020-11-07 22:23:33 +0000
committerbptato <nincsnevem662@gmail.com>2020-11-07 22:23:33 +0000
commit469c4084aa85a6ded18b259703509a79480bd8c0 (patch)
tree3a903e6f4e0d1a0911311813a66716c744f839bf
parentRemove unnecessary variable assignment (diff)
downloadw3m-469c4084aa85a6ded18b259703509a79480bd8c0.tar.gz
w3m-469c4084aa85a6ded18b259703509a79480bd8c0.zip
Remove unnecessary file_unquote call
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index f5aaa5b..268e3f8 100644
--- a/file.c
+++ b/file.c
@@ -1961,7 +1961,7 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer,
#endif /* USE_NNTP */
#ifdef USE_GOPHER
else if (pu.scheme == SCM_GOPHER) {
- p = file_unquote(pu.file);
+ p = pu.file;
while(*p == '/')
++p;
switch (*p) {