diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-09-03 15:09:34 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-09-03 15:09:34 +0800 |
commit | 17c0693fc7c47beb18297e741c347a2876f28884 (patch) | |
tree | 07f4e118fa1d6a4c85bb6f7223a31ac6b46234f0 | |
parent | 1deb31af11602df0fac9d39b8c7e107c68ae71b2 (diff) | |
download | pttbbs-17c0693fc7c47beb18297e741c347a2876f28884.tar pttbbs-17c0693fc7c47beb18297e741c347a2876f28884.tar.gz pttbbs-17c0693fc7c47beb18297e741c347a2876f28884.tar.bz2 pttbbs-17c0693fc7c47beb18297e741c347a2876f28884.tar.lz pttbbs-17c0693fc7c47beb18297e741c347a2876f28884.tar.xz pttbbs-17c0693fc7c47beb18297e741c347a2876f28884.tar.zst pttbbs-17c0693fc7c47beb18297e741c347a2876f28884.zip |
interval every 3mins -> 1min
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@508 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | util/outmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/outmail.c b/util/outmail.c index 1c282d61..804638e5 100644 --- a/util/outmail.c +++ b/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; } |