ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/auth.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/src/auth.c (file contents):
Revision 6977 by michael, Mon Dec 21 17:07:58 2015 UTC vs.
Revision 6978 by michael, Tue Dec 22 17:54:47 2015 UTC

# Line 215 | Line 215 | auth_error(struct AuthRequest *auth)
215   * identifing process fail, it is aborted and the user is given a username
216   * of "unknown".
217   */
218 < static int
218 > static void
219   start_auth_query(struct AuthRequest *auth)
220   {
221    struct irc_ssaddr localaddr;
# Line 229 | Line 229 | start_auth_query(struct AuthRequest *aut
229      report_error(L_ALL, "creating auth stream socket %s:%s",
230                   get_client_name(auth->client, SHOW_IP), errno);
231      ++ServerStats.is_abad;
232 <    return 0;
232 >    return;
233    }
234  
235    SetDoingAuth(auth);
# Line 252 | Line 252 | start_auth_query(struct AuthRequest *aut
252        (struct sockaddr *)&localaddr, localaddr.ss_len, auth_connect_callback,
253        auth, auth->client->connection->ip.ss.ss_family,
254        GlobalSetOptions.ident_timeout);
255  return 1; /* We suceed here for now */
255   }
256  
257   /*

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines