[Asterisk-code-review] res pjsip mwi body generator: Re-order the body items (asterisk[master])

George Joseph asteriskteam at digium.com
Mon May 30 19:31:26 CDT 2016


George Joseph has uploaded a new change for review.

  https://gerrit.asterisk.org/2922

Change subject: res_pjsip_mwi_body_generator:  Re-order the body items
......................................................................

res_pjsip_mwi_body_generator:  Re-order the body items

Re-ordered the body items so Message-Account is second.

Messages-Waiting: no
Message-Account: sip:1571@<IP Removed>:5060
Voice-Message: 0/0 (0/0)

ASTERISK-26065 #close
Reported-by: Ross Beer

Change-Id: If5d35a64656eac98c2dd5e490cc0b2807bed80c3
---
M res/res_pjsip_mwi_body_generator.c
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/22/2922/1

diff --git a/res/res_pjsip_mwi_body_generator.c b/res/res_pjsip_mwi_body_generator.c
index f46ce04..e827910 100644
--- a/res/res_pjsip_mwi_body_generator.c
+++ b/res/res_pjsip_mwi_body_generator.c
@@ -61,11 +61,11 @@
 
 	ast_str_append(mwi, 0, "Messages-Waiting: %s\r\n",
 			counter->new_msgs ? "yes" : "no");
-	ast_str_append(mwi, 0, "Voice-Message: %d/%d (0/0)\r\n",
-			counter->new_msgs, counter->old_msgs);
 	if (!ast_strlen_zero(counter->message_account))  {
 		ast_str_append(mwi, 0, "Message-Account: %s\r\n", counter->message_account);
 	}
+	ast_str_append(mwi, 0, "Voice-Message: %d/%d (0/0)\r\n",
+			counter->new_msgs, counter->old_msgs);
 
 	return 0;
 }

-- 
To view, visit https://gerrit.asterisk.org/2922
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If5d35a64656eac98c2dd5e490cc0b2807bed80c3
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: George Joseph <gjoseph at digium.com>



More information about the asterisk-code-review mailing list