aboutsummaryrefslogtreecommitdiffstats
path: root/url.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-01-17 17:05:57 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-01-17 17:05:57 +0000
commitc09389519e3b83e995e8ea30e1bc424e55c437ba (patch)
treeceadd73b0818fe3273b9daa4a92dbd95d20183b1 /url.c
parentfix indent (diff)
downloadw3m-c09389519e3b83e995e8ea30e1bc424e55c437ba.tar.gz
w3m-c09389519e3b83e995e8ea30e1bc424e55c437ba.zip
[w3m-dev 03647] expandName() and expandPath()
* etc.c (openSecretFile): use expandPath (expandName): rewrite (file_to_url): use expandPath * file.c (_doFileCopy): use expandPath (doFileSave): use expandPath * indep.c (expandPath): rewrite * linein.c (inputLineHistSearch): use expandPath (next_dcompl): use expandPath (doComplete): use expandPath * local.c (set_cgi_environ): rewrite * mailcap.c (loadMailcap): use expandPath * main.c (svBuf): use expandPath (addDownloadList): use expandPath * rc.c (init_rc): use expandPath (rcFile): rewrite (auxbinFile): use expandPath (libFile): use expandPath (etcFile): use expandPath (helpFile): use expandPath * url.c (loadMimeTypes): use expandPath (loadURIMethods): use expandPath From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'url.c')
-rw-r--r--url.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/url.c b/url.c
index 8026c4b..489c6a0 100644
--- a/url.c
+++ b/url.c
@@ -1,4 +1,4 @@
-/* $Id: url.c,v 1.68 2003/01/11 15:54:09 ukai Exp $ */
+/* $Id: url.c,v 1.69 2003/01/17 17:06:06 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -154,7 +154,7 @@ loadMimeTypes(char *filename)
Str tmp;
struct table2 *mtypes;
- f = fopen(expandName(filename), "r");
+ f = fopen(expandPath(filename), "r");
if (f == NULL)
return NULL;
n = 0;
@@ -2103,7 +2103,7 @@ loadURIMethods(char *filename)
struct table2 *um;
char *up, *p;
- f = fopen(expandName(filename), "r");
+ f = fopen(expandPath(filename), "r");
if (f == NULL)
return NULL;
i = 0;