summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/app_record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_record.c b/apps/app_record.c
index 810806e48..ababa2380 100644
--- a/apps/app_record.c
+++ b/apps/app_record.c
@@ -209,7 +209,7 @@ static int record_exec(struct ast_channel *chan, void *data)
ast_copy_string(tmp + tmplen, &(fname.piece[i][1]), sizeof(tmp) - tmplen);
}
count++;
- } while ( ast_fileexists(tmp, ext, chan->language) != -1 );
+ } while (ast_fileexists(tmp, ext, chan->language) > 0);
pbx_builtin_setvar_helper(chan, "RECORDED_FILE", tmp);
} else
strncpy(tmp, filename, sizeof(tmp)-1);