From e3d176d0d36ef915bf2286c2d01202c906a7aa1a Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Wed, 24 Feb 2010 06:39:27 +0000
Subject: [PATCH] Remove unnecessary warning message, make a couple of
 formatting tweaks

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

diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index eb78632deb..6aa60ab41b 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -1056,14 +1056,13 @@ static int csv_quote(struct ast_channel *chan, const char *cmd, char *data, char
 {
 	char *bufptr = buf, *dataptr = data;
 
-	if (len < 3){ /* at least two for quotes and one for binary zero */
+	if (len < 3) { /* at least two for quotes and one for binary zero */
 		ast_log(LOG_ERROR, "Not enough buffer");
 		return -1;
 	}
 
 	if (ast_strlen_zero(data)) {
-		ast_log(LOG_WARNING, "No argument specified!\n");
-		ast_copy_string(buf,"\"\"",len);
+		ast_copy_string(buf, "\"\"", len);
 		return 0;
 	}
 
-- 
GitLab