Explorar el Código

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

tags/v0.9.3
Michael Brown hace 18 años
padre
commit
552b4a178e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/net/retry.c

+ 1
- 1
src/net/retry.c Ver fichero

@@ -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…
Cancelar
Guardar