1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Event handlers no longer return re-queue flag. Instead of using it, just

call ev_schedule() on the same handler which should work perfectly now.
This commit is contained in:
Martin Mares
2000-04-27 22:28:49 +00:00
parent 987de54578
commit 8f6accb5bb
6 changed files with 17 additions and 21 deletions

View File

@@ -144,7 +144,7 @@ config_do_commit(struct config *c)
return !nobs;
}
static int
static void
config_done(void *unused)
{
struct config *c;
@@ -168,7 +168,6 @@ config_done(void *unused)
if (!config_do_commit(c))
break;
}
return 0;
}
int