openbsd-ports/print/htmldoc/patches/patch-htmldoc_file_c
steven daeb0d956e update to htmldoc 1.8.27
from maintainer Antoine Jacoutot <ajacoutot at lphp.org>
2006-09-23 10:14:34 +00:00

31 lines
860 B
Plaintext

$OpenBSD: patch-htmldoc_file_c,v 1.3 2006/09/23 10:14:34 steven Exp $
--- htmldoc/file.c.orig Fri Sep 22 19:27:41 2006
+++ htmldoc/file.c Fri Sep 22 19:28:11 2006
@@ -78,7 +78,7 @@
# define OPENPERM (_S_IREAD | _S_IWRITE)
#else
# define TEMPLATE "%s/%06ld.%06d.tmp"
-# define OPENMODE (O_CREAT | O_RDWR | O_EXCL | O_TRUNC)
+# define OPENMODE (O_CREAT | O_RDWR | O_EXCL)
# define OPENPERM 0600
#endif /* WIN32 */
@@ -176,7 +176,7 @@ file_cleanup(void)
}
#else
if ((tmpdir = getenv("TMPDIR")) == NULL)
- tmpdir = "/var/tmp";
+ tmpdir = "/tmp";
#endif /* WIN32 */
/*
@@ -1097,7 +1097,7 @@ file_temp(char *name, /* O - Filename
}
#else
if ((tmpdir = getenv("TMPDIR")) == NULL)
- tmpdir = "/var/tmp";
+ tmpdir = "/tmp";
#endif /* WIN32 */
snprintf(name, (size_t)len, TEMPLATE, tmpdir, (long)getpid(), web_files);