summaryrefslogtreecommitdiff
path: root/apps/app_record.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-10-31 23:29:56 +0000
committerMark Spencer <markster@digium.com>2004-10-31 23:29:56 +0000
commitc18dfe9bf63e0031f58bd984cd9b45a66456780e (patch)
tree3167c0385b240252703534fd151b6db34e0cc5ac /apps/app_record.c
parent3e9b079007d10defcf96311c1ead2d688c6e9437 (diff)
Ouch.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4133 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_record.c')
-rwxr-xr-xapps/app_record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_record.c b/apps/app_record.c
index f84baa37a..ecd54d346 100755
--- a/apps/app_record.c
+++ b/apps/app_record.c
@@ -86,7 +86,7 @@ static int record_exec(struct ast_channel *chan, void *data)
/* The next few lines of code parse out the filename and header from the input string */
- if (!data || !ast_strlen_zero(data)) { /* no data implies no filename or anything is present */
+ if (!data || ast_strlen_zero(data)) { /* no data implies no filename or anything is present */
ast_log(LOG_WARNING, "Record requires an argument (filename)\n");
return -1;
}