diff options
author | Andreas Schneider <asn@samba.org> | 2013-02-25 17:34:21 +0100 |
---|---|---|
committer | David Disseldorp <ddiss@samba.org> | 2013-03-06 01:16:34 +0100 |
commit | 90cbfc96d118d6b55c47392d8ae421434dea8225 (patch) | |
tree | 8d0c24d3e5241daaadda579acf13fe90c399b632 /source4/client | |
parent | 7a50f089e0ae70ec7652575e11fbf87a9f6a86e7 (diff) | |
download | samba-90cbfc96d118d6b55c47392d8ae421434dea8225.tar.gz samba-90cbfc96d118d6b55c47392d8ae421434dea8225.tar.bz2 samba-90cbfc96d118d6b55c47392d8ae421434dea8225.zip |
Make sure to set umask() before calling mkstemp().
Reviewed-by: David Disseldorp <ddiss@samba.org>
Autobuild-User(master): David Disseldorp <ddiss@samba.org>
Autobuild-Date(master): Wed Mar 6 01:16:34 CET 2013 on sn-devel-104
Diffstat (limited to 'source4/client')
-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; |