From 4b69c3af696237565fd403757a09d25436bfacd3 Mon Sep 17 00:00:00 2001 From: Matthew Nicholson Date: Tue, 3 Nov 2009 18:22:28 +0000 Subject: [PATCH] Fixed a spelling error in the q850 reason header option in the output of sip show settings. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@227298 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index f669513b6b..8934c1a975 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -16510,7 +16510,7 @@ static char *sip_show_settings(struct ast_cli_entry *e, int cmd, struct ast_cli_ else ast_cli(a->fd, " SIP realtime: Enabled\n" ); ast_cli(a->fd, " Qualify Freq : %d ms\n", global_qualifyfreq); - ast_cli(a->fd, " User Reson header: %s\n", cli_yesno(ast_test_flag(&global_flags[1], SIP_PAGE2_Q850_REASON))); + ast_cli(a->fd, " Q.850 Reason header: %s\n", cli_yesno(ast_test_flag(&global_flags[1], SIP_PAGE2_Q850_REASON))); ast_cli(a->fd, "\nNetwork QoS Settings:\n"); ast_cli(a->fd, "---------------------------\n"); ast_cli(a->fd, " IP ToS SIP: %s\n", ast_tos2str(global_tos_sip));