summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2006-09-27 17:00:48 +0000
committerMatthew Fredrickson <creslin@digium.com>2006-09-27 17:00:48 +0000
commit6b3a6a1104ab3700ff3126e8d4856295a7f12c03 (patch)
treeb6365ccb5d9862b064d5d9102a24e0719c4b6a01 /channels
parentd2c57c5f4fa930ba94b4ea10a837c28042023e91 (diff)
Fix some little things
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43785 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index eae99144a..e0d2308ef 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -8558,7 +8558,7 @@ static void *ss7_linkset(void *data)
static void zt_ss7_message(struct ss7 *ss7, char *s)
{
- ast_log(LOG_DEBUG, "%s", s);
+ ast_verbose("%s", s);
}
static void zt_ss7_error(struct ss7 *ss7, char *s)
@@ -11290,7 +11290,7 @@ static struct ast_cli_entry zap_ss7_cli[] = {
{ { "ss7", "debug", "linkset", NULL }, handle_ss7_debug,
"Enables SS7 debugging on a linkset", ss7_debug_help, NULL },
{ { "ss7", "no", "debug", "linkset", NULL }, handle_ss7_no_debug,
- "Enables SS7 debugging on a linkset", ss7_debug_help, NULL },
+ "Disables SS7 debugging on a linkset", ss7_debug_help, NULL },
{ { "ss7", "block", "cic", NULL }, handle_ss7_block_cic,
"Disables SS7 debugging on a linkset", ss7_block_cic_help, NULL },
{ { "ss7", "unblock", "cic", NULL }, handle_ss7_unblock_cic,