aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/pbx_dundi.c
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-24 06:44:37 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-24 06:44:37 +0000
commit0ddc4d30dd4cc1521a45e22128a8e3de18d87cd8 (patch)
tree8fe5d6aa0fa2f7aa8867ebf6f9cc506c9d269927 /pbx/pbx_dundi.c
parent081dde225089e73446fa6b19eeb0979ff268f20f (diff)
Pass format string
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4079 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx/pbx_dundi.c')
-rwxr-xr-xpbx/pbx_dundi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/pbx_dundi.c b/pbx/pbx_dundi.c
index 407d96953..a7d2644b2 100755
--- a/pbx/pbx_dundi.c
+++ b/pbx/pbx_dundi.c
@@ -249,12 +249,12 @@ static int dundi_xmit(struct dundi_packet *pack);
static void dundi_debug_output(const char *data)
{
if (dundidebug)
- ast_verbose(data);
+ ast_verbose("%s", data);
}
static void dundi_error_output(const char *data)
{
- ast_log(LOG_WARNING, data);
+ ast_log(LOG_WARNING, "%s", data);
}
static int has_permission(struct permission *ps, char *cont)