diff --git a/Changes b/Changes index d2857695f..abf310075 100644 --- a/Changes +++ b/Changes @@ -683,3 +683,4 @@ - Added burst.c in extras/ - Moved lopt and whowas to anUser (saves 8 bytes for every server) - Removed aClient->history, not used (saves 4 bytes for every user/server) +- Fixed compile error with SSL diff --git a/src/s_bsd.c b/src/s_bsd.c index 81863753f..bb66093a2 100644 --- a/src/s_bsd.c +++ b/src/s_bsd.c @@ -1891,7 +1891,9 @@ int read_message(delay, listp) } if (DBufLength(&cptr->sendQ) || IsConnecting(cptr) || +#ifdef USE_SSL cptr->flags & FLAGS_SSL_HSHAKE || +#endif (DoList(cptr) && IsSendable(cptr))) FD_SET(i, &write_set); } diff --git a/src/s_conf.c b/src/s_conf.c index ad7f19516..5196ba71b 100644 --- a/src/s_conf.c +++ b/src/s_conf.c @@ -2844,7 +2844,7 @@ int m_svso(cptr, sptr, parc, parv) { if (*m == (char) *(i + 1)) { - acptr->user->oflags |= flag; + acptr->oflag |= flag; break; } }