diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-04 10:55:19 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-06-04 10:55:19 +0000 |
commit | 966226823c39b8952f8db398cf5cc1081746ef4a (patch) | |
tree | 90919e07aead12067a3ca839bebdbde097776db2 /src/s_bsd.c | |
parent | 512fa99402ef1d4d34d255236d45d635221aec25 (diff) |
- Fixed debug assertion being triggered on ident lookup
as reported by Stuart Walsh
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2180 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/s_bsd.c')
-rw-r--r-- | src/s_bsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/s_bsd.c b/src/s_bsd.c index cf9d749..5d5216c 100644 --- a/src/s_bsd.c +++ b/src/s_bsd.c @@ -271,7 +271,7 @@ ssl_handshake(int fd, struct Client *client_p) return; } - execute_callback(auth_cb, client_p); + start_auth(client_p); } #endif @@ -342,7 +342,7 @@ add_connection(struct Listener *listener, struct irc_ssaddr *irn, int fd) } else #endif - execute_callback(auth_cb, new_client); + start_auth(new_client); } /* |