From: Mark Michelson Date: Thu, 30 Apr 2015 19:09:32 +0000 (-0500) Subject: res_pjsip_outbound_authenticator_digest: Add missing outbound authenticator callback. X-Git-Tag: 13.4.0-rc1~64^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b8cddfb36288723fd6b65b7e65d15da2bbd2d41;p=thirdparty%2Fasterisk.git res_pjsip_outbound_authenticator_digest: Add missing outbound authenticator callback. The Asterisk 13 version of the fix for outbound registration was missing a key component that set the outbound authenticator's callback that creates an authenticated request based on an old request. This was picked up by some outbound registration tests failing in the testsuite. Change-Id: I5ca9379698c606da36bc38eaffccedaf64211ce3 --- diff --git a/res/res_pjsip_outbound_authenticator_digest.c b/res/res_pjsip_outbound_authenticator_digest.c index aa35fbac05..8616b6caf3 100644 --- a/res/res_pjsip_outbound_authenticator_digest.c +++ b/res/res_pjsip_outbound_authenticator_digest.c @@ -158,6 +158,7 @@ static int digest_create_request_with_auth(const struct ast_sip_auth_vector *aut static struct ast_sip_outbound_authenticator digest_authenticator = { .create_request_with_auth = digest_create_request_with_auth, + .create_request_with_auth_from_old = digest_create_request_with_auth_from_old, }; static int load_module(void)