From ab72716e077f29a75ce0be64f84a910de565e5ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Tue, 22 Jun 2010 21:11:59 +0000 Subject: [PATCH] * CtdlIPCStartEncryption(): though its return value is documented to be always one, use it to silence a warning. --- citadel/utillib/citadel_ipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/utillib/citadel_ipc.c b/citadel/utillib/citadel_ipc.c index d16606f8e..bfef117d5 100644 --- a/citadel/utillib/citadel_ipc.c +++ b/citadel/utillib/citadel_ipc.c @@ -2095,7 +2095,7 @@ int CtdlIPCStartEncryption(CtdlIPC *ipc, char *cret) } ipc->ssl = temp_ssl; - BIO_set_close(ipc->ssl->rbio, BIO_NOCLOSE); + if (BIO_set_close(ipc->ssl->rbio, BIO_NOCLOSE)) { int bits, alg_bits; -- 2.39.2