diff options
| author | Brett Smith <brett@w3.org> | 2012-08-23 14:18:15 -0400 |
|---|---|---|
| committer | Brett Smith <brett@w3.org> | 2012-08-23 14:18:15 -0400 |
| commit | be97fa8ab1c47a17f6d4c17c69de89d084dc1402 (patch) | |
| tree | ab296934e6992ab35751d663b00a3e48c71fd85f /src/ngircd/irc-server.c | |
| parent | 164954a78856893c9be03d95dac73e781e4f78f5 (diff) | |
| download | ngircd-be97fa8ab1c47a17f6d4c17c69de89d084dc1402.tar.gz ngircd-be97fa8ab1c47a17f6d4c17c69de89d084dc1402.zip | |
Indentation and style fixes.
Diffstat (limited to 'src/ngircd/irc-server.c')
| -rw-r--r-- | src/ngircd/irc-server.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngircd/irc-server.c b/src/ngircd/irc-server.c index 5d5ee634..8526a573 100644 --- a/src/ngircd/irc-server.c +++ b/src/ngircd/irc-server.c @@ -80,7 +80,8 @@ IRC_SERVER( CLIENT *Client, REQUEST *Req ) Conn_Close( Client_Conn( Client ), NULL, "Server not configured here", true); return DISCONNECTED; } - if( strcmp( Conn_Password( Client_Conn( Client ) ), Conf_Server[i].pwd_in ) != 0 ) + if( strcmp( Conn_Password( Client_Conn( Client ) ), + Conf_Server[i].pwd_in ) != 0 ) { /* wrong password */ Log( LOG_ERR, "Connection %d: Got bad password from server \"%s\"!", Client_Conn( Client ), Req->argv[0] ); |