Browse Source

One bit of an ASCII character can make a big difference.

tags/v0.9.3
Michael Brown 18 years ago
parent
commit
552b4a178e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/net/retry.c

+ 1
- 1
src/net/retry.c View File

@@ -107,7 +107,7 @@ static void retry_step ( struct process *process ) {
107 107
 	unsigned long now = currticks();
108 108
 
109 109
 	list_for_each_entry_safe ( timer, tmp, &timers, list ) {
110
-		if ( timer->expiry >= now ) {
110
+		if ( timer->expiry <= now ) {
111 111
 			timer->retries++;
112 112
 			reload_timer ( timer );
113 113
 			timer->expired ( timer );

Loading…
Cancel
Save