From: David Vossel Date: Tue, 16 Feb 2010 21:03:34 +0000 (+0000) Subject: swap openssl with OpenSSL in warning message. X-Git-Tag: 11.0.0-beta1~3428 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f9e5ab5573996febf7aacd689ce4dd07e2dfe51;p=thirdparty%2Fasterisk.git swap openssl with OpenSSL in warning message. (issue #16673) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@246981 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/tcptls.c b/main/tcptls.c index a53cc30dc7..5c419c4af8 100644 --- a/main/tcptls.c +++ b/main/tcptls.c @@ -217,7 +217,7 @@ static void *handle_tcptls_connection(void *data) ast_log(LOG_WARNING, "FILE * open failed!\n"); #ifndef DO_SSL if (tcptls_session->parent->tls_cfg) { - ast_log(LOG_WARNING, "Attempted a TLS connection without openssl support. This will not work!\n"); + ast_log(LOG_WARNING, "Attempted a TLS connection without OpenSSL support. This will not work!\n"); } #endif ao2_ref(tcptls_session, -1);