Fix typo in zombie period start time
authorAlan T. DeKok <aland@freeradius.org>
Mon, 25 Oct 2010 10:34:55 +0000 (12:34 +0200)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 25 Oct 2010 10:35:13 +0000 (12:35 +0200)
src/main/event.c

index 95008a4..9cff1b5 100644 (file)
@@ -1174,7 +1174,7 @@ static void no_response_to_proxied_request(void *ctx)
        home->state = HOME_STATE_ZOMBIE;
        
        home->zombie_period_start.tv_sec = home->last_packet;
-       home->zombie_period_start.tv_sec = USEC / 2;
+       home->zombie_period_start.tv_usec = USEC / 2;
        
        fr_event_delete(el, &home->ev);
        home->currently_outstanding = 0;