diff options
author | Timo Sirainen <cras@irssi.org> | 2000-11-04 18:57:29 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-11-04 18:57:29 +0000 |
commit | 84de26d0b7656db0f65e0e9e8f21687ce9e90dc0 (patch) | |
tree | 9f3f6625c15f49863d29c24f61fda8684acd562d /src | |
parent | 745a3e21041f5f718bf674e1790c75fe38c4dbc2 (diff) | |
download | irssi-84de26d0b7656db0f65e0e9e8f21687ce9e90dc0.zip |
rejoin timeout 1min -> 5min
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@808 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r-- | src/irc/core/channel-rejoin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/core/channel-rejoin.c b/src/irc/core/channel-rejoin.c index 7db53c0d..4114c065 100644 --- a/src/irc/core/channel-rejoin.c +++ b/src/irc/core/channel-rejoin.c @@ -27,7 +27,7 @@ #include "irc-channels.h" #include "channel-rejoin.h" -#define REJOIN_TIMEOUT (1000*60/**5*/) /* try to rejoin every 5 minutes */ +#define REJOIN_TIMEOUT (1000*60*5) /* try to rejoin every 5 minutes */ static int rejoin_tag; |