summaryrefslogtreecommitdiff
path: root/res/res_smdi.c
diff options
context:
space:
mode:
authorEliel C. Sardanons <eliels@gmail.com>2009-06-16 12:32:00 +0000
committerEliel C. Sardanons <eliels@gmail.com>2009-06-16 12:32:00 +0000
commita179e144cd3c24deb9a7362beb18b27c5a647119 (patch)
tree2e4c58af87108c5e30a66b2ac9b5c9b95b3821d2 /res/res_smdi.c
parent3c235110692a77913eadbb39e033e4399d9c6766 (diff)
Show the interface name on error, if it is not found.
If the smdiport specified is not found, show the interface name instead of '(null)'. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@200841 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_smdi.c')
-rw-r--r--res/res_smdi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_smdi.c b/res/res_smdi.c
index c37fc1eef..b8ff7808c 100644
--- a/res/res_smdi.c
+++ b/res/res_smdi.c
@@ -1138,7 +1138,7 @@ static int smdi_load(int reload)
ASTOBJ_UNREF(iface, ast_smdi_interface_destroy);
if (!(iface = ASTOBJ_CONTAINER_FIND(&smdi_ifaces, v->value))) {
- ast_log(LOG_NOTICE, "SMDI interface %s not found\n", iface->name);
+ ast_log(LOG_NOTICE, "SMDI interface %s not found\n", v->value);
continue;
}
} else if (!strcasecmp(v->name, "pollinginterval")) {