[PATCH] trace-cmd: Add missing mode to open() call

From: Seth Forshee
Date: Fri Jun 20 2014 - 14:42:40 EST


touch_file() calls open(2) with O_CREAT but omits the required
mode argument. Fix this omission.

Signed-off-by: Seth Forshee <seth.forshee@xxxxxxxxxxxxx>
---
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/