From baf53d8d6bcfd464f700d8c393769032db0f88f8 Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Tue, 13 Jan 2009 23:14:29 +0000 Subject: [PATCH] Merged revisions 168588 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r168588 | twilson | 2009-01-13 17:05:43 -0600 (Tue, 13 Jan 2009) | 5 lines Fully overwrite a same-named file when uploading (closes issue #14190) Reported by: timking ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@168590 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_http_post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_http_post.c b/res/res_http_post.c index 39816da762..5fbf46a242 100644 --- a/res/res_http_post.c +++ b/res/res_http_post.c @@ -69,7 +69,7 @@ static void post_raw(GMimePart *part, const char *post_dir, const char *fn) ast_debug(1, "Posting raw data to %s\n", filename); - if ((fd = open(filename, O_CREAT | O_WRONLY, 0666)) == -1) { + if ((fd = open(filename, O_CREAT | O_WRONLY | O_TRUNC, 0666)) == -1) { ast_log(LOG_WARNING, "Unable to open %s for writing file from a POST!\n", filename); return;