changeset 4547:1f19b66c5d84

[gaim-migrate @ 4826] idle_time check fix committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Fri, 07 Feb 2003 01:08:25 +0000
parents a951bb590857
children ae85f27e4948
files src/idle.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/idle.c	Thu Feb 06 22:27:29 2003 +0000
+++ b/src/idle.c	Fri Feb 07 01:08:25 2003 +0000
@@ -119,7 +119,7 @@
 		return TRUE;
 	}
 
-	if (idle_time > IDLEMARK && !gc->is_idle) {
+	if (idle_time >= IDLEMARK && !gc->is_idle) {
 		debug_printf("setting %s idle %d seconds\n", gc->username, idle_time);
 		serv_set_idle(gc, idle_time);
 		gc->is_idle = 1;