Removed uneeded crypt() from auth.c and session.c

This commit is contained in:
Sylvain Rochet
2012-05-20 20:04:05 +02:00
parent de70b710af
commit f5dc6e80c0
2 changed files with 5 additions and 0 deletions

View File

@@ -1388,6 +1388,8 @@ check_passwd(unit, auser, userlen, apasswd, passwdlen, msg)
int passwdlen;
char **msg;
{
return UPAP_AUTHNAK;
#if 0
int ret;
char *filename;
FILE *f;
@@ -1498,6 +1500,7 @@ check_passwd(unit, auser, userlen, apasswd, passwdlen, msg)
BZERO(secret, sizeof(secret));
return ret;
#endif
}
/*