summaryrefslogtreecommitdiff
path: root/apps/app_exec.c
diff options
context:
space:
mode:
authorMichiel van Baak <michiel@vanbaak.info>2008-02-09 11:27:10 +0000
committerMichiel van Baak <michiel@vanbaak.info>2008-02-09 11:27:10 +0000
commit4dccb58fb7f8fd8a2a0e5dba0f4d58b39c277022 (patch)
treee41e80e4e3a91bbae96d141e8300a25335865986 /apps/app_exec.c
parent9d4d240b941e547912438487d5b91567803da743 (diff)
whitespace fixes only.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103249 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_exec.c')
-rw-r--r--apps/app_exec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_exec.c b/apps/app_exec.c
index 441e81458..88c81822b 100644
--- a/apps/app_exec.c
+++ b/apps/app_exec.c
@@ -37,7 +37,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/app.h"
/* Maximum length of any variable */
-#define MAXRESULT 1024
+#define MAXRESULT 1024
/*! Note
*
@@ -76,7 +76,7 @@ static char *tryexec_descrip =
static char *app_execif = "ExecIf";
static char *execif_synopsis = "Executes dialplan application, conditionally";
-static char *execif_descrip =
+static char *execif_descrip =
" ExecIF (<expr>?<appiftrue>(<args>)[:<appiffalse>(<args>)])\n"
"If <expr> is true, execute and return the result of <appiftrue>(<args>).\n"
"If <expr> is true, but <appiftrue> is not found, then the application\n"
@@ -90,7 +90,7 @@ static int exec_exec(struct ast_channel *chan, void *data)
if (ast_strlen_zero(data))
return 0;
-
+
s = ast_strdupa(data);
args[0] = 0;
appname = strsep(&s, "(");
@@ -180,7 +180,7 @@ static int execif_exec(struct ast_channel *chan, void *data)
*end = '\0';
}
- if (pbx_checkcondition(expr.expr)) {
+ if (pbx_checkcondition(expr.expr)) {
if (!ast_strlen_zero(apps.t) && (app = pbx_findapp(apps.t))) {
res = pbx_exec(chan, app, S_OR(truedata, ""));
} else {