aboutsummaryrefslogtreecommitdiffstats
path: root/rc.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-01-20 15:24:19 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-01-20 15:24:19 +0000
commitd619d246a9ccf580e3d5d5b3322c605762096ba4 (patch)
tree2f48be93021516fafe36774a39b4e3cdbd45b398 /rc.c
parent[w3m-dev 03657] fputs -> Strfputs (diff)
downloadw3m-d619d246a9ccf580e3d5d5b3322c605762096ba4.tar.gz
w3m-d619d246a9ccf580e3d5d5b3322c605762096ba4.zip
[w3m-dev 03658] Re: Other user can see local cookie.
* fm.h (rc_dir): init(NULL) * rc.c (config_file): deleted (init_rc): use rc_dir From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--rc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/rc.c b/rc.c
index 8055c26..24faa7e 100644
--- a/rc.c
+++ b/rc.c
@@ -1,4 +1,4 @@
-/* $Id: rc.c,v 1.78 2003/01/17 17:07:02 ukai Exp $ */
+/* $Id: rc.c,v 1.79 2003/01/20 15:24:20 ukai Exp $ */
/*
* Initialization file etc.
*/
@@ -33,8 +33,6 @@ struct rc_search_table {
static struct rc_search_table *RC_search_table;
static int RC_table_size;
-static char *config_file = NULL;
-
#define P_INT 0
#define P_SHORT 1
#define P_CHARINT 2
@@ -1372,7 +1370,7 @@ init_rc(void)
struct stat st;
FILE *f;
- if (config_file != NULL)
+ if (rc_dir != NULL)
goto open_rc;
rc_dir = expandPath(RC_DIR);