1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 01:06:39 +02:00
This commit is contained in:
stskeeps
2002-08-26 14:55:14 +00:00
parent 012bad26c7
commit a15ce8eb54
+2
View File
@@ -401,9 +401,11 @@ int ircd_SSL_write(aClient *acptr, const void *buf, int sz)
if(ERRNO == EAGAIN)
return -1;
default:
Debug((DEBUG_ERROR, "ircd_SSL_write: returning fatal_ssl_error for %s", acptr->name));
return fatal_ssl_error(ssl_err, SAFE_SSL_WRITE, acptr);
}
}
Debug((DEBUG_ERROR, "ircd_SSL_write for %s (%p, %i): success", acptr->name, buf, sz));
return len;
}