diff options
Diffstat (limited to 'mbbsd/brc.c')
| -rw-r--r-- | mbbsd/brc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mbbsd/brc.c b/mbbsd/brc.c index 9237c24f..cb5432cc 100644 --- a/mbbsd/brc.c +++ b/mbbsd/brc.c @@ -293,14 +293,15 @@ brc_finalize(){ } } -void +int brc_initialize(){ static char done = 0; if (done) - return; + return 1; done = 1; brc_expire_time = login_start_time - 365 * 86400; read_brc_buf(); + return 0; } int |
