diff options
Diffstat (limited to 'mbbsd/stuff.c')
-rw-r--r-- | mbbsd/stuff.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/stuff.c b/mbbsd/stuff.c index 8f6f65d5..608c1384 100644 --- a/mbbsd/stuff.c +++ b/mbbsd/stuff.c @@ -4,12 +4,12 @@ /* ----------------------------------------------------- */ /* set file path for boards/user home */ /* ----------------------------------------------------- */ -static char *str_home_file = "home/%c/%s/%s"; -static char *str_board_file = "boards/%c/%s/%s"; -static char *str_board_n_file = "boards/%c/%s/%s.%d"; +const static char *str_home_file = "home/%c/%s/%s"; +const static char *str_board_file = "boards/%c/%s/%s"; +const static char *str_board_n_file = "boards/%c/%s/%s.%d"; #define STR_DOTDIR ".DIR" -static char *str_dotdir = STR_DOTDIR; +const static char *str_dotdir = STR_DOTDIR; void sethomepath(char *buf, const char *userid) |