diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -186,7 +186,7 @@ int main(int argc, char* argv[]) { if((now - lastlogin) > threshold) { printf("You're dead!\n"); exec_cmd(cmd); - } else if((lastlogin - now) > 86400) { + } else if((lastlogin - now) > SECONDS_IN_DAY) { // Abort if last login is too far in the future. // This should account for when printf( |