aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authormattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-19 21:07:49 +0000
committermattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-19 21:07:49 +0000
commitb759835a90f073c926cd14c1ea0b1b65886c9172 (patch)
treecf83670bfa579bddec4a254d9f6fc45e2a8a7829 /funcs
parent46e384f88c5799ec199046c5bfc1b0957a7a5957 (diff)
Various updates from PCadach's chan_h323-live branch
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43294 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_callerid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/funcs/func_callerid.c b/funcs/func_callerid.c
index 21f13ceaa..6068739d4 100644
--- a/funcs/func_callerid.c
+++ b/funcs/func_callerid.c
@@ -59,7 +59,7 @@ static int callerid_read(struct ast_channel *chan, char *cmd, char *data,
ast_copy_string(buf, num, len);
} else {
- ast_log(LOG_ERROR, "Unknown callerid data type.\n");
+ ast_log(LOG_ERROR, "Unknown callerid data type '%s'.\n", data);
}
} else {
if (!strncasecmp("all", data, 3)) {
@@ -88,7 +88,7 @@ static int callerid_read(struct ast_channel *chan, char *cmd, char *data,
ast_copy_string(buf, chan->cid.cid_rdnis, len);
}
} else {
- ast_log(LOG_ERROR, "Unknown callerid data type.\n");
+ ast_log(LOG_ERROR, "Unknown callerid data type '%s'.\n", data);
}
}
@@ -125,7 +125,7 @@ static int callerid_write(struct ast_channel *chan, char *cmd, char *data,
free(chan->cid.cid_rdnis);
chan->cid.cid_rdnis = ast_strdup(value);
} else {
- ast_log(LOG_ERROR, "Unknown callerid data type.\n");
+ ast_log(LOG_ERROR, "Unknown callerid data type '%s'.\n", data);
}
return 0;