aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/codec_adpcm.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-12 02:41:29 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-12 02:41:29 +0000
commit382d0f9e61523fab3feaebea8bf9eb036e098e05 (patch)
treea93a1eedf2204702bbaa13575dbaeb3d0c3b02e4 /codecs/codec_adpcm.c
parent7907ef81a688a61d2f713bfb30834544ca73aa8b (diff)
show correct codec in verbose messages (bug #4008)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5452 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs/codec_adpcm.c')
-rwxr-xr-xcodecs/codec_adpcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/codecs/codec_adpcm.c b/codecs/codec_adpcm.c
index 7ec1571da..027c64926 100755
--- a/codecs/codec_adpcm.c
+++ b/codecs/codec_adpcm.c
@@ -569,7 +569,7 @@ parse_config(void)
if (!strcasecmp(var->name, "genericplc")) {
useplc = ast_true(var->value) ? 1 : 0;
if (option_verbose > 2)
- ast_verbose(VERBOSE_PREFIX_3 "CODEC ULAW: %susing generic PLC\n", useplc ? "" : "not ");
+ ast_verbose(VERBOSE_PREFIX_3 "codec_adpcm: %susing generic PLC\n", useplc ? "" : "not ");
}
var = var->next;
}