summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-11-06 19:04:45 +0000
committerMark Michelson <mmichelson@digium.com>2007-11-06 19:04:45 +0000
commit5a4867543d268d68b9cfebcef6e02bb9e032173e (patch)
tree7700cf1ff2f8a29dd724b11a624ddc8f57a199b5 /channels
parent8b917df39b2f10e3d9e59bad8d84a50eb4b23f13 (diff)
"show application <foo>" changes for clarity.
(closes issue #11171, reported and patched by blitzrage) Many thanks! git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89044 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_agent.c6
-rw-r--r--channels/chan_sip.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/channels/chan_agent.c b/channels/chan_agent.c
index 0b8ed76c6..70c2b9d93 100644
--- a/channels/chan_agent.c
+++ b/channels/chan_agent.c
@@ -89,7 +89,7 @@ static const char descrip[] =
"when a new call comes in. The agent can dump the call by pressing\n"
"the star key.\n"
"The option string may contain zero or more of the following characters:\n"
-" 's' -- silent login - do not announce the login ok segment after agent logged in/off\n";
+" 's' -- silent login - do not announce the login ok segment after agent logged on/off\n";
static const char descrip3[] =
" AgentMonitorOutgoing([options]):\n"
@@ -97,11 +97,11 @@ static const char descrip3[] =
"comparison of the callerid of the current interface and the global variable \n"
"placed by the AgentCallbackLogin application. That's why it should be used only\n"
"with the AgentCallbackLogin app. Uses the monitoring functions in chan_agent \n"
-"instead of Monitor application. That have to be configured in the agents.conf file.\n"
+"instead of Monitor application. That has to be configured in the agents.conf file.\n"
"\nReturn value:\n"
"Normally the app returns 0 unless the options are passed.\n"
"\nOptions:\n"
-" 'd' - make the app return -1 if there is an error condition"
+" 'd' - make the app return -1 if there is an error condition\n"
" 'c' - change the CDR so that the source of the call is 'Agent/agent_id'\n"
" 'n' - don't generate the warnings when there is no callerid or the\n"
" agentid is not known.\n"
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 3046ea3d0..7b4764b6d 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -18703,14 +18703,14 @@ static int sip_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp, struc
}
static char *synopsis_dtmfmode = "Change the dtmfmode for a SIP call";
-static char *descrip_dtmfmode = "SIPDtmfMode(inband|info|rfc2833): Changes the dtmfmode for a SIP call\n";
+static char *descrip_dtmfmode = " SIPDtmfMode(inband|info|rfc2833): Changes the dtmfmode for a SIP call\n";
static char *app_dtmfmode = "SIPDtmfMode";
static char *app_sipaddheader = "SIPAddHeader";
static char *synopsis_sipaddheader = "Add a SIP header to the outbound call";
static char *descrip_sipaddheader = ""
-" SIPAddHeader(Header: Content)\n"
+" SIPAddHeader(Header: Content):\n"
"Adds a header to a SIP call placed with DIAL.\n"
"Remember to user the X-header if you are adding non-standard SIP\n"
"headers, like \"X-Asterisk-Accountcode:\". Use this with care.\n"