summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2015-04-30 14:09:32 -0500
committerJoshua Colp <jcolp@digium.com>2015-04-30 14:13:42 -0500
commit4b8cddfb36288723fd6b65b7e65d15da2bbd2d41 (patch)
treed5fb6516d8c19474d03673e0a1b0fb6a9413bc5a
parente0c6f88010e5e1de5e75137e70bc7656b38cd7fa (diff)
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
-rw-r--r--res/res_pjsip_outbound_authenticator_digest.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/res/res_pjsip_outbound_authenticator_digest.c b/res/res_pjsip_outbound_authenticator_digest.c
index aa35fbac0..8616b6caf 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)