From 3697f7dbcc6c0679bb66bee9b1d45aee2c28a603 Mon Sep 17 00:00:00 2001
From: James Golovich <james@gnuinter.net>
Date: Fri, 2 Jul 2004 19:24:16 +0000
Subject: [PATCH] Make app_txtcidname.c use ast_strlen_zero and cleanup the
 code a bit

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3376 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_txtcidname.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/apps/app_txtcidname.c b/apps/app_txtcidname.c
index dd72ed0979..1aa1514509 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
 		}
 	}
-- 
GitLab