diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/client/client.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index 66c21dfc54..cd7967ebc5 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -940,9 +940,12 @@ static int cmd_more(struct smbclient_context *ctx, const char **args) char *pager; int fd; int rc = 0; + mode_t mask; lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir()); + 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; |