diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-04-20 23:58:26 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-04-20 23:58:26 +0200 |
commit | 4c32978d973093903a5372a6f358275184bbcab2 (patch) | |
tree | b7f0331f4909d125215c1ffe042cdec4d0e63172 /source3/client | |
parent | 6fc40ce0d3b1bdfe9a138db4953896f47094424e (diff) | |
download | samba-4c32978d973093903a5372a6f358275184bbcab2.tar.gz samba-4c32978d973093903a5372a6f358275184bbcab2.tar.bz2 samba-4c32978d973093903a5372a6f358275184bbcab2.zip |
Remove smb_mkstemp() - libreplace will now provide a secure mkstemp() if
the system one is broken.
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index a6f31bcf17..fcb9b27f1f 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1281,7 +1281,7 @@ static int cmd_more(void) if (!lname) { return 1; } - fd = smb_mkstemp(lname); + fd = mkstemp(lname); if (fd == -1) { d_printf("failed to create temporary file for more\n"); return 1; |