Procházet zdrojové kódy

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

tags/v0.9.3
Michael Brown před 18 roky
rodič
revize
552b4a178e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      src/net/retry.c

+ 1
- 1
src/net/retry.c Zobrazit soubor

@@ -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 );

Načítá se…
Zrušit
Uložit