diff options
author | Martin Mares <mj@ucw.cz> | 1998-12-06 17:40:42 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-12-06 17:40:42 +0000 |
commit | 980ffedbb04bf3beedf147fc7dfed40cdbf968aa (patch) | |
tree | 075cadebb6c03fe359f77f51dc11d5e06d66f95f /sysdep/unix/main.c | |
parent | 0846203e896d8ab009217968e391b5e13ea3c4c6 (diff) |
Kernel syncer is now configurable. It will probably need some more
options, but at least basic tuning is possible now.
Diffstat (limited to 'sysdep/unix/main.c')
-rw-r--r-- | sysdep/unix/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 4aeb9c19..f5076c41 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -82,7 +82,6 @@ read_config(void) cf_read_hook = cf_read; cf_lex_init(1); cf_parse(); - add_tail(&protocol_list, &proto_unix_kernel.n); /* FIXME: Must be _always_ the last one */ protos_postconfig(); } @@ -104,6 +103,7 @@ main(void) if_init(); protos_build(); + add_tail(&protocol_list, &proto_unix_kernel.n); protos_init(); debug("Reading configuration file.\n"); |