[reSIProcate] A fix for broken build with enabled SSL
Dmitry Semyonov
dsemyonov at dins.ru
Wed Jul 21 11:21:53 CDT 2004
Please, apply:
Index: resiprocate/sip/resiprocate/test/limpc.cxx
===================================================================
--- resiprocate/sip/resiprocate/test/limpc.cxx (revision 3135)
+++ resiprocate/sip/resiprocate/test/limpc.cxx (working copy)
@@ -760,8 +760,9 @@
#ifdef USE_SSL
try
{
- assert( sipStack.security );
- bool ok = sipStack.security->loadAllCerts( key , Data::Empty );
+ Security *security = sipStack.getSecurity();
+ assert( security != NULL );
+ bool ok = security->loadAllCerts( key , Data::Empty );
if ( !ok )
{
InfoLog( << "Could not load the certificates" );
...Bye..Dmitry.
More information about the resiprocate-devel
mailing list