touch_file() calls open(2) with O_CREAT but omits the required mode argument. Fix this omission.
Signed-off-by: Seth Forshee <[email protected]> --- 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 [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

