diff options
Diffstat (limited to 'accel-pppd')
-rw-r--r-- | accel-pppd/auth/auth_chap_md5.c | 2 | ||||
-rw-r--r-- | accel-pppd/auth/auth_mschap_v1.c | 2 | ||||
-rw-r--r-- | accel-pppd/auth/auth_pap.c | 2 | ||||
-rw-r--r-- | accel-pppd/extra/ippool.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/accel-pppd/auth/auth_chap_md5.c b/accel-pppd/auth/auth_chap_md5.c index 8744160..2307f14 100644 --- a/accel-pppd/auth/auth_chap_md5.c +++ b/accel-pppd/auth/auth_chap_md5.c @@ -445,4 +445,4 @@ static void auth_chap_md5_init() log_emerg("chap-md5: failed to register handler\n"); } -DEFINE_INIT(4, auth_chap_md5_init); +DEFINE_INIT(6, auth_chap_md5_init); diff --git a/accel-pppd/auth/auth_mschap_v1.c b/accel-pppd/auth/auth_mschap_v1.c index 85e3037..8764dfd 100644 --- a/accel-pppd/auth/auth_mschap_v1.c +++ b/accel-pppd/auth/auth_mschap_v1.c @@ -523,4 +523,4 @@ static void auth_mschap_v1_init() log_emerg("mschap-v1: failed to register handler\n"); } -DEFINE_INIT(4, auth_mschap_v1_init); +DEFINE_INIT(5, auth_mschap_v1_init); diff --git a/accel-pppd/auth/auth_pap.c b/accel-pppd/auth/auth_pap.c index 5b20210..e051dd7 100644 --- a/accel-pppd/auth/auth_pap.c +++ b/accel-pppd/auth/auth_pap.c @@ -280,4 +280,4 @@ static void auth_pap_init() ppp_auth_register_handler(&pap); } -DEFINE_INIT(4, auth_pap_init); +DEFINE_INIT(7, auth_pap_init); diff --git a/accel-pppd/extra/ippool.c b/accel-pppd/extra/ippool.c index b5711d0..6f07e5f 100644 --- a/accel-pppd/extra/ippool.c +++ b/accel-pppd/extra/ippool.c @@ -206,5 +206,5 @@ static void ippool_init(void) ipdb_register(&ipdb); } -DEFINE_INIT(100, ippool_init); +DEFINE_INIT(101, ippool_init); |