diff options
| author | Alexander Barton <alex@barton.de> | 2012-08-26 19:11:44 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-08-26 19:11:44 +0200 |
| commit | f79d41e92741fa2f6bc6fef957d278707ad4236a (patch) | |
| tree | 581c39bd5ce606172f3ebed60851040533d18772 | |
| parent | 1680ea02da10dff49748214f6e01538808c7ee65 (diff) | |
| download | ngircd-f79d41e92741fa2f6bc6fef957d278707ad4236a.tar.gz ngircd-f79d41e92741fa2f6bc6fef957d278707ad4236a.zip | |
Login_User(): use "conn" insted of calling Client_Conn(Client)
| -rw-r--r-- | src/ngircd/login.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngircd/login.c b/src/ngircd/login.c index e1959d66..460fcd1e 100644 --- a/src/ngircd/login.c +++ b/src/ngircd/login.c @@ -93,14 +93,14 @@ Login_User(CLIENT * Client) * the beahiour of the daemon compiled without PAM support: * because there can't be any "server password", all * passwords supplied are classified as "wrong". */ - if(Conn_Password(Client_Conn(Client))[0] == '\0') + if(Conn_Password(conn)[0] == '\0') return Login_User_PostAuth(Client); Client_Reject(Client, "Non-empty password", false); return DISCONNECTED; } if (Conf_PAMIsOptional && - strcmp(Conn_Password(Client_Conn(Client)), "") == 0) { + strcmp(Conn_Password(conn), "") == 0) { /* Clients are not required to send a password and to be PAM- * authenticated at all. If not, they won't become "identified" * and keep the "~" in their supplied user name. @@ -130,7 +130,7 @@ Login_User(CLIENT * Client) } #else /* Check global server password ... */ - if (strcmp(Conn_Password(Client_Conn(Client)), Conf_ServerPwd) != 0) { + if (strcmp(Conn_Password(conn), Conf_ServerPwd) != 0) { /* Bad password! */ Client_Reject(Client, "Bad server password", false); return DISCONNECTED; |