diff options
author | Jindrich Novy <jnovy@redhat.com> | 2008-04-16 13:40:05 +0200 |
---|---|---|
committer | Jindrich Novy <jnovy@redhat.com> | 2008-04-16 13:40:05 +0200 |
commit | 23f6917b10b6579f39199e4cf831bb13fc596824 (patch) | |
tree | 36d517bfd34dfb25d89d2477bac56e3560c772c6 | |
parent | 58fdb16e75b2200ba509f726f938493eb43d54ea (diff) | |
download | librpm-tizen-23f6917b10b6579f39199e4cf831bb13fc596824.tar.gz librpm-tizen-23f6917b10b6579f39199e4cf831bb13fc596824.tar.bz2 librpm-tizen-23f6917b10b6579f39199e4cf831bb13fc596824.zip |
Don't use mktemp(), we are sure mkstemp() is available now
-rw-r--r-- | build.c | 4 | ||||
-rw-r--r-- | lib/rpmchecksig.c | 4 |
2 files changed, 0 insertions, 8 deletions
@@ -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; diff --git a/lib/rpmchecksig.c b/lib/rpmchecksig.c index 2b953bcfa..43f3f40d8 100644 --- a/lib/rpmchecksig.c +++ b/lib/rpmchecksig.c @@ -331,11 +331,7 @@ static int rpmReSign(rpmts ts, QVA_t qva, ARGV_const_t argv) /* Write the lead/signature of the output rpm */ strcpy(tmprpm, rpm); strcat(tmprpm, ".XXXXXX"); -#if defined(HAVE_MKSTEMP) (void) close(mkstemp(tmprpm)); -#else - (void) mktemp(tmprpm); -#endif trpm = tmprpm; if (manageFile(&ofd, trpm, O_WRONLY|O_CREAT|O_TRUNC)) |