diff options
author | Martin Mares <mj@ucw.cz> | 1999-02-11 22:59:06 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-02-11 22:59:06 +0000 |
commit | 67bd949a520151a5ab50090d02617adc4960868c (patch) | |
tree | f51bc8de9ed319069c710c9c33772b886567cc67 /lib/event.c | |
parent | 14dea0ed25cd0385ce35cf66ff309a78960b18ca (diff) |
Real implementation of protocol state machines. Delayed startup/shutdown
should work now. Initial feeding of protocols by interfaces/routes is
done from the event queue to prevent unwanted recursion.
Diffstat (limited to 'lib/event.c')
-rw-r--r-- | lib/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/event.c b/lib/event.c index 7f5454f8..962c6409 100644 --- a/lib/event.c +++ b/lib/event.c @@ -34,7 +34,7 @@ ev_dump(resource *r) static struct resclass ev_class = { "Event", - 0, + sizeof(event), (void (*)(resource *)) ev_postpone, ev_dump }; |