diff options
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/playerdb.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index c89325a..a1d3e9a 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -1196,17 +1196,19 @@ PUBLIC int player_count(int CountAdmins) return count; } -PUBLIC int player_idle(int p) -{ - if (parray[p].status != PLAYER_PROMPT) - return time(0) - parray[p].logon_time; - else - return time(0) - parray[p].last_command_time; +PUBLIC int +player_idle(int p) +{ // XXX + if (parray[p].status != PLAYER_PROMPT) + return (time(NULL) - parray[p].logon_time); + + return (time(NULL) - parray[p].last_command_time); } -PUBLIC int player_ontime(int p) -{ - return time(0) - parray[p].logon_time; +PUBLIC int +player_ontime(int p) +{ // XXX + return (time(NULL) - parray[p].logon_time); } PRIVATE void |