X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fspost.c;h=e9e44a809645487d6df1552875bc2a4954a619d4;hb=164be8e5e8b40ce4572281be26d423a9c9d595f3;hp=c7582ba0529035922257cce5830c77b8aa1238f9;hpb=c696510f3aea5e0181a326d1f044d1952f87d26a;p=mmh diff --git a/uip/spost.c b/uip/spost.c index c7582ba..e9e44a8 100644 --- a/uip/spost.c +++ b/uip/spost.c @@ -350,15 +350,8 @@ main (int argc, char **argv) out = stdout; } else { -#ifdef HAVE_MKSTEMP if ((out = fdopen( mkstemp (tmpfil), "w" )) == NULL ) adios (tmpfil, "unable to create"); -#else - mktemp (tmpfil); - if ((out = fopen (tmpfil, "w")) == NULL) - adios (tmpfil, "unable to create"); - chmod (tmpfil, 0600); -#endif } hdrtab = (msgstate == normal) ? NHeaders : RHeaders; @@ -747,15 +740,9 @@ make_bcc_file (void) char *vec[6]; FILE * in, *out; -#ifdef HAVE_MKSTEMP fd = mkstemp(bccfil); if (fd == -1 || (out = fdopen(fd, "w")) == NULL) adios (bccfil, "unable to create"); -#else - mktemp (bccfil); - if ((out = fopen (bccfil, "w")) == NULL) - adios (bccfil, "unable to create"); -#endif chmod (bccfil, 0600); fprintf (out, "Date: %s\n", dtimenow (0));