From 90cbfc96d118d6b55c47392d8ae421434dea8225 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 25 Feb 2013 17:34:21 +0100 Subject: Make sure to set umask() before calling mkstemp(). Reviewed-by: David Disseldorp Autobuild-User(master): David Disseldorp Autobuild-Date(master): Wed Mar 6 01:16:34 CET 2013 on sn-devel-104 --- source3/client/client.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index 8038021d83..e21d867c55 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1361,6 +1361,7 @@ static int cmd_more(void) const char *pager; int fd; int rc = 0; + mode_t mask; rname = talloc_strdup(ctx, client_get_cur_dir()); if (!rname) { @@ -1371,7 +1372,9 @@ static int cmd_more(void) if (!lname) { return 1; } + mask = umask(S_IRWXO | S_IRWXG); fd = mkstemp(lname); + umask(mask); if (fd == -1) { d_printf("failed to create temporary file for more\n"); return 1; -- cgit