From c2a463a19ac227bd26a3e09a90c0cf4b7f6f1e15 Mon Sep 17 00:00:00 2001 From: citats Date: Fri, 2 Jul 2004 19:24:16 +0000 Subject: Make app_txtcidname.c use ast_strlen_zero and cleanup the code a bit git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3376 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_txtcidname.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'apps') diff --git a/apps/app_txtcidname.c b/apps/app_txtcidname.c index dd72ed097..1aa151450 100755 --- a/apps/app_txtcidname.c +++ b/apps/app_txtcidname.c @@ -65,11 +65,10 @@ static int txtcidname_exec(struct ast_channel *chan, void *data) LOCAL_USER_REMOVE(u); /* Parse it out */ if (res > 0) { - if(strlen(txt) > 0) - { + if (!ast_strlen_zero(txt)) { pbx_builtin_setvar_helper(chan, "TXTCIDNAME", txt); #if 0 - printf("TXTCIDNAME got '%s'\n", txt); + ast_log(LOG_DEBUG, "TXTCIDNAME got '%s'\n", txt); #endif } } -- cgit v1.2.3