[reSIProcate] DUM: ClientAuthManager is not mandatory
Hello.
Please, apply the following patch to make the $subj come true.
Index: sip/resiprocate/dum/Dialog.cxx
===================================================================
--- sip/resiprocate/dum/Dialog.cxx (revision 3281)
+++ sip/resiprocate/dum/Dialog.cxx (working copy)
@@ -443,7 +443,8 @@
default:
break;
}
- if ( lastRequest && mDum.mClientAuthManager->handle( *lastRequest,
msg ) )
+ if ( lastRequest && mDum.mClientAuthManager.get() &&
+ mDum.mClientAuthManager->handle( *lastRequest, msg ) )
{
InfoLog( << "about to re-send request with digest credentials" );
InfoLog( << *lastRequest );
...Bye..Dmitry.