[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1403289749-1631-1-git-send-email-seth.forshee@canonical.com>
Date: Fri, 20 Jun 2014 13:42:29 -0500
From: Seth Forshee <seth.forshee@...onical.com>
To: Steven Rostedt <rostedt@...dmis.org>
Cc: linux-kernel@...r.kernel.org,
Seth Forshee <seth.forshee@...onical.com>
Subject: [PATCH] trace-cmd: Add missing mode to open() call
touch_file() calls open(2) with O_CREAT but omits the required
mode argument. Fix this omission.
Signed-off-by: Seth Forshee <seth.forshee@...onical.com>
---
trace-record.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/trace-record.c b/trace-record.c
index d3dd0c5..8438388 100644
--- a/trace-record.c
+++ b/trace-record.c
@@ -1995,7 +1995,7 @@ static void touch_file(const char *file)
{
int fd;
- fd = open(file, O_WRONLY | O_CREAT | O_TRUNC);
+ fd = open(file, O_WRONLY | O_CREAT | O_TRUNC, 0644);
if (fd < 0)
die("could not create file %s\n", file);
close(fd);
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists