diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-20 15:24:19 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-20 15:24:19 +0000 |
commit | d619d246a9ccf580e3d5d5b3322c605762096ba4 (patch) | |
tree | 2f48be93021516fafe36774a39b4e3cdbd45b398 /rc.c | |
parent | [w3m-dev 03657] fputs -> Strfputs (diff) | |
download | w3m-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 'rc.c')
-rw-r--r-- | rc.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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); |