diff options
Diffstat (limited to 'accel-pppd/auth')
-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_mschap_v2.c | 2 | ||||
-rw-r--r-- | accel-pppd/auth/auth_pap.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 87d5edad..c0d78c8d 100644 --- a/accel-pppd/auth/auth_chap_md5.c +++ b/accel-pppd/auth/auth_chap_md5.c @@ -73,7 +73,7 @@ struct chap_auth_data { int failure; char *name; char *mschap_error; - int started:1; + unsigned int started:1; }; static void chap_send_challenge(struct chap_auth_data *ad, int new); diff --git a/accel-pppd/auth/auth_mschap_v1.c b/accel-pppd/auth/auth_mschap_v1.c index a55082e4..bddaabf5 100644 --- a/accel-pppd/auth/auth_mschap_v1.c +++ b/accel-pppd/auth/auth_mschap_v1.c @@ -72,7 +72,7 @@ struct chap_auth_data { int failure; char *name; char *mschap_error; - int started:1; + unsigned int started:1; }; static void chap_send_challenge(struct chap_auth_data *ad, int new); diff --git a/accel-pppd/auth/auth_mschap_v2.c b/accel-pppd/auth/auth_mschap_v2.c index 635cb28f..3e944500 100644 --- a/accel-pppd/auth/auth_mschap_v2.c +++ b/accel-pppd/auth/auth_mschap_v2.c @@ -75,7 +75,7 @@ struct chap_auth_data { char *mschap_error; char *reply_msg; int failure; - int started:1; + unsigned int started:1; }; static void chap_send_challenge(struct chap_auth_data *ad, int new); diff --git a/accel-pppd/auth/auth_pap.c b/accel-pppd/auth/auth_pap.c index 7becc472..40921019 100644 --- a/accel-pppd/auth/auth_pap.c +++ b/accel-pppd/auth/auth_pap.c @@ -42,7 +42,7 @@ struct pap_auth_data { struct triton_timer_t timeout; char *peer_id; int req_id; - int started:1; + unsigned int started:1; }; struct pap_hdr { |