summaryrefslogtreecommitdiff
path: root/build.c
diff options
context:
space:
mode:
authorJindrich Novy <jnovy@redhat.com>2008-04-16 13:40:05 +0200
committerJindrich Novy <jnovy@redhat.com>2008-04-16 13:40:05 +0200
commit23f6917b10b6579f39199e4cf831bb13fc596824 (patch)
tree36d517bfd34dfb25d89d2477bac56e3560c772c6 /build.c
parent58fdb16e75b2200ba509f726f938493eb43d54ea (diff)
downloadrpm-23f6917b10b6579f39199e4cf831bb13fc596824.tar.gz
rpm-23f6917b10b6579f39199e4cf831bb13fc596824.tar.bz2
rpm-23f6917b10b6579f39199e4cf831bb13fc596824.zip
Don't use mktemp(), we are sure mkstemp() is available now
Diffstat (limited to 'build.c')
-rw-r--r--build.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/build.c b/build.c
index 2e9ab8cd1..7ef1b314e 100644
--- a/build.c
+++ b/build.c
@@ -112,11 +112,7 @@ static char * getTarSpec(const char *arg)
specDir = rpmGetPath("%{_specdir}", NULL);
tmpSpecFile = rpmGetPath("%{_specdir}/", "rpm-spec.XXXXXX", NULL);
-#if defined(HAVE_MKSTEMP)
(void) close(mkstemp(tmpSpecFile));
-#else
- (void) mktemp(tmpSpecFile);
-#endif
for (try = tryspec; *try != NULL; try++) {
FILE *fp;