Properly use the timeout_initialized() macro.

This commit is contained in:
Guus Sliepen 2007-05-17 22:17:24 +00:00
parent bf6490825e
commit 531d5a904a
2 changed files with 2 additions and 2 deletions

View file

@ -376,7 +376,7 @@ void graph(void)
sssp_bfs();
mst_kruskal();
if(!ev.ev_callback)
if(!timeout_initialized(&ev))
timeout_set(&ev, dump_graph, NULL);
event_add(&ev, &(struct timeval){5, 0});
}

View file

@ -98,7 +98,7 @@ static void send_mtu_probe_handler(int fd, short events, void *data) {
}
void send_mtu_probe(node_t *n) {
if(!n->mtuevent.ev_callback)
if(!timeout_initialized(&n->mtuevent))
timeout_set(&n->mtuevent, send_mtu_probe_handler, n);
send_mtu_probe_handler(0, 0, n);
}