summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-09-03 15:09:34 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-09-03 15:09:34 +0800
commitda106ffe5cb78dfbda0f6c698efd9dcc0975a428 (patch)
tree280319f21bf8110494657eecd8b2b82d6635a9af
parenteb3739a401a3679d1ab58777f6a47354aedbafea (diff)
downloadpttbbs-da106ffe5cb78dfbda0f6c698efd9dcc0975a428.tar
pttbbs-da106ffe5cb78dfbda0f6c698efd9dcc0975a428.tar.gz
pttbbs-da106ffe5cb78dfbda0f6c698efd9dcc0975a428.tar.bz2
pttbbs-da106ffe5cb78dfbda0f6c698efd9dcc0975a428.tar.lz
pttbbs-da106ffe5cb78dfbda0f6c698efd9dcc0975a428.tar.xz
pttbbs-da106ffe5cb78dfbda0f6c698efd9dcc0975a428.tar.zst
pttbbs-da106ffe5cb78dfbda0f6c698efd9dcc0975a428.zip
interval every 3mins -> 1min
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@508 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/util/outmail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/util/outmail.c b/pttbbs/util/outmail.c
index 1c282d61..804638e5 100644
--- a/pttbbs/util/outmail.c
+++ b/pttbbs/util/outmail.c
@@ -1,4 +1,4 @@
-/* $Id: outmail.c,v 1.3 2002/06/28 14:20:12 in2 Exp $ */
+/* $Id: outmail.c,v 1.4 2002/09/03 07:09:34 in2 Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -327,7 +327,7 @@ int main(int argc, char **argv, char **envp) {
for(;;) {
sendMail();
setproctitle("outmail: sleeping");
- sleep(60 * 3); /* send mail every 3 minute */
+ sleep(60); /* send mail every minute */
}
return 0;
}