[svn-commits] russell: trunk r152875 - /trunk/funcs/func_db.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Oct 30 14:18:17 CDT 2008


Author: russell
Date: Thu Oct 30 14:18:16 2008
New Revision: 152875

URL: http://svn.digium.com/view/asterisk?view=rev&rev=152875
Log:
 - spaces to tabs
 - add some braces
 - remove unnecessary cast

Modified:
    trunk/funcs/func_db.c

Modified: trunk/funcs/func_db.c
URL: http://svn.digium.com/view/asterisk/trunk/funcs/func_db.c?view=diff&rev=152875&r1=152874&r2=152875
==============================================================================
--- trunk/funcs/func_db.c (original)
+++ trunk/funcs/func_db.c Thu Oct 30 14:18:16 2008
@@ -44,8 +44,8 @@
 			    char *parse, char *buf, size_t len)
 {
 	AST_DECLARE_APP_ARGS(args,
-			     AST_APP_ARG(family);
-			     AST_APP_ARG(key);
+		AST_APP_ARG(family);
+		AST_APP_ARG(key);
 	);
 
 	buf[0] = '\0';
@@ -64,8 +64,9 @@
 
 	if (ast_db_get(args.family, args.key, buf, len - 1)) {
 		ast_debug(1, "DB: %s/%s not found in database.\n", args.family, args.key);
-	} else
+	} else {
 		pbx_builtin_setvar_helper(chan, "DB_RESULT", buf);
+	}
 
 	return 0;
 }
@@ -74,8 +75,8 @@
 			     const char *value)
 {
 	AST_DECLARE_APP_ARGS(args,
-			     AST_APP_ARG(family);
-			     AST_APP_ARG(key);
+		AST_APP_ARG(family);
+		AST_APP_ARG(key);
 	);
 
 	if (ast_strlen_zero(parse)) {
@@ -90,8 +91,9 @@
 		return -1;
 	}
 
-	if (ast_db_put(args.family, args.key, (char *) value))
+	if (ast_db_put(args.family, args.key, value)) {
 		ast_log(LOG_WARNING, "DB: Error writing value to database.\n");
+	}
 
 	return 0;
 }
@@ -114,8 +116,8 @@
 			      char *parse, char *buf, size_t len)
 {
 	AST_DECLARE_APP_ARGS(args,
-			     AST_APP_ARG(family);
-			     AST_APP_ARG(key);
+		AST_APP_ARG(family);
+		AST_APP_ARG(key);
 	);
 
 	buf[0] = '\0';
@@ -132,9 +134,9 @@
 		return -1;
 	}
 
-	if (ast_db_get(args.family, args.key, buf, len - 1))
+	if (ast_db_get(args.family, args.key, buf, len - 1)) {
 		strcpy(buf, "0");
-	else {
+	} else {
 		pbx_builtin_setvar_helper(chan, "DB_RESULT", buf);
 		strcpy(buf, "1");
 	}
@@ -158,8 +160,8 @@
 			      char *parse, char *buf, size_t len)
 {
 	AST_DECLARE_APP_ARGS(args,
-			     AST_APP_ARG(family);
-			     AST_APP_ARG(key);
+		AST_APP_ARG(family);
+		AST_APP_ARG(key);
 	);
 
 	buf[0] = '\0';
@@ -183,6 +185,7 @@
 			ast_debug(1, "DB_DELETE: %s/%s could not be deleted from the database\n", args.family, args.key);
 		}
 	}
+
 	pbx_builtin_setvar_helper(chan, "DB_RESULT", buf);
 
 	return 0;




More information about the svn-commits mailing list