diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2010-10-14 22:51:42 +0400 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2010-10-14 22:51:42 +0400 |
commit | 53fa9ea09429af6e67616d3157a6e907d1e632e9 (patch) | |
tree | 0ef4b9457b723d1747f78f2567872683ceaddc9e /accel-pptpd/radius | |
parent | 04c623f7a645d0decae6ba73ba19650aaec3c497 (diff) | |
download | accel-ppp-53fa9ea09429af6e67616d3157a6e907d1e632e9.tar.gz accel-ppp-53fa9ea09429af6e67616d3157a6e907d1e632e9.zip |
updated gentoo ebuids
fixed compilation warnings
Diffstat (limited to 'accel-pptpd/radius')
-rw-r--r-- | accel-pptpd/radius/auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accel-pptpd/radius/auth.c b/accel-pptpd/radius/auth.c index 3be5825..2e76439 100644 --- a/accel-pptpd/radius/auth.c +++ b/accel-pptpd/radius/auth.c @@ -295,7 +295,7 @@ static void setup_mppe(struct rad_req_t *req, const uint8_t *challenge) int rad_auth_mschap_v1(struct radius_pd_t *rpd, const char *username, va_list args) { - int r; + int r = PWDB_DENIED; struct rad_req_t *req; uint8_t response[50]; @@ -340,7 +340,7 @@ out: int rad_auth_mschap_v2(struct radius_pd_t *rpd, const char *username, va_list args) { - int r; + int r = PWDB_DENIED; struct rad_req_t *req; struct rad_attr_t *ra; uint8_t mschap_response[50]; |