From 1e3557c6369466dd6f3d5fd365c15a5d5d4f4399 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Thu, 18 Jan 2007 18:36:35 +0000 Subject: [PATCH] Copy MOH settings when calling a peer so that if they put someone on hold or get put on hold themselves they get the right music class. (issue #8840 reported by mdu113) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@51243 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 5b5c6aeb5a..d767ebe8fe 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -2626,6 +2626,8 @@ static int create_addr_from_peer(struct sip_pvt *dialog, struct sip_peer *peer) ast_string_field_set(dialog, username, peer->username); ast_string_field_set(dialog, peersecret, peer->secret); ast_string_field_set(dialog, peermd5secret, peer->md5secret); + ast_string_field_set(dialog, mohsuggest, peer->mohsuggest); + ast_string_field_set(dialog, mohinterpret, peer->mohinterpret); ast_string_field_set(dialog, tohost, peer->tohost); ast_string_field_set(dialog, fullcontact, peer->fullcontact); if (!dialog->initreq.headers && !ast_strlen_zero(peer->fromdomain)) {