diff options
-rw-r--r-- | pttbbs/util/update_online.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/util/update_online.c b/pttbbs/util/update_online.c index c974350a..4e17dd72 100644 --- a/pttbbs/util/update_online.c +++ b/pttbbs/util/update_online.c @@ -38,11 +38,11 @@ void fastcheck() continue; } last_uid = u.uid; - if (verbose) + if (verbose > 1) fprintf(stderr, "checking: %s (%s)\n", urec.userid, Cdatelite(&urec.lastlogin)); /* user still online, let's mock it. */ - if (now < urec.lastlogin + DAY_SECONDS) + if (now < urec.lastlogin + DAY_SECONDS - 60 * 60) continue; if (verbose) |