Don't use #ifdef here

SVN revision: 9554
This commit is contained in:
tsauerbeck 2004-04-01 16:41:27 +00:00 committed by tsauerbeck
parent e81c2946e8
commit 34f5a0f58c
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ _ecore_con_cl_handler(void *data, Ecore_Fd_Handler *fd_handler)
if (!svr->ssl)
#endif
num = read(svr->fd, buf, 65536);
#ifdef USE_OPENSSL
#if USE_OPENSSL
else
num = SSL_read(svr->ssl, buf, 65536);
#endif