From: Matthew Nicholson Date: Tue, 3 Nov 2009 18:22:28 +0000 (+0000) Subject: Fixed a spelling error in the q850 reason header option in the output of sip show... X-Git-Tag: 11.0.0-beta1~3940 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b69c3af696237565fd403757a09d25436bfacd3;p=thirdparty%2Fasterisk.git 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 --- 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));