summaryrefslogtreecommitdiffstats
path: root/src/net/retry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/retry.c')
-rw-r--r--src/net/retry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/retry.c b/src/net/retry.c
index f00c178e2..fd7042663 100644
--- a/src/net/retry.c
+++ b/src/net/retry.c
@@ -107,7 +107,7 @@ static void retry_step ( struct process *process ) {
unsigned long now = currticks();
list_for_each_entry_safe ( timer, tmp, &timers, list ) {
- if ( timer->expiry >= now ) {
+ if ( timer->expiry <= now ) {
timer->retries++;
reload_timer ( timer );
timer->expired ( timer );