diff options
author | Kozlov Dmitry <dima@server> | 2011-05-30 11:24:27 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2011-05-30 11:24:27 +0400 |
commit | 276beb78cea777ff8d81d9f5a4cd107c5a3dc2aa (patch) | |
tree | f50c4e781ba13c3ee59382a4466cfafa31ef464a /accel-pppd/auth/auth_mschap_v2.c | |
parent | 01afc34e830f2adf94c191a3c4f2761888dae53b (diff) | |
download | accel-ppp-276beb78cea777ff8d81d9f5a4cd107c5a3dc2aa.tar.gz accel-ppp-276beb78cea777ff8d81d9f5a4cd107c5a3dc2aa.zip |
rewrited initialization procedure (fix gcc-4.6 builds)
Diffstat (limited to 'accel-pppd/auth/auth_mschap_v2.c')
-rw-r--r-- | accel-pppd/auth/auth_mschap_v2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/accel-pppd/auth/auth_mschap_v2.c b/accel-pppd/auth/auth_mschap_v2.c index c14e44f3..f7407e80 100644 --- a/accel-pppd/auth/auth_mschap_v2.c +++ b/accel-pppd/auth/auth_mschap_v2.c @@ -629,7 +629,7 @@ static void chap_recv(struct ppp_handler_t *h) log_ppp_warn("mschap-v2: unknown code received %x\n",hdr->code); } -static void __init auth_mschap_v2_init() +static void auth_mschap_v2_init() { urandom_fd = open("/dev/urandom", O_RDONLY); if (urandom_fd < 0) { @@ -641,3 +641,4 @@ static void __init auth_mschap_v2_init() log_emerg("mschap-v2: failed to register handler\n"); } +DEFINE_INIT(4, auth_mschap_v2_init); |