- spaces to tabs

- add some braces
 - remove unnecessary cast


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@152875 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2008-10-30 19:18:16 +00:00
parent 85f78531ce
commit be467d0cea

View File

@@ -64,8 +64,9 @@ static int function_db_read(struct ast_channel *chan, const char *cmd,
if (ast_db_get(args.family, args.key, buf, len - 1)) { 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); 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); pbx_builtin_setvar_helper(chan, "DB_RESULT", buf);
}
return 0; return 0;
} }
@@ -90,8 +91,9 @@ static int function_db_write(struct ast_channel *chan, const char *cmd, char *pa
return -1; 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"); ast_log(LOG_WARNING, "DB: Error writing value to database.\n");
}
return 0; return 0;
} }
@@ -132,9 +134,9 @@ static int function_db_exists(struct ast_channel *chan, const char *cmd,
return -1; 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"); strcpy(buf, "0");
else { } else {
pbx_builtin_setvar_helper(chan, "DB_RESULT", buf); pbx_builtin_setvar_helper(chan, "DB_RESULT", buf);
strcpy(buf, "1"); strcpy(buf, "1");
} }
@@ -183,6 +185,7 @@ static int function_db_delete(struct ast_channel *chan, const char *cmd,
ast_debug(1, "DB_DELETE: %s/%s could not be deleted from the database\n", args.family, args.key); 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); pbx_builtin_setvar_helper(chan, "DB_RESULT", buf);
return 0; return 0;