ports/security/courier-authlib/files/patch-libs_liblock_locktest.c
Guido Falsi cf05ce3135 - Update courier-unicode to 1.2
- Update courier-imap to 4.16.1
- Update maildrop to 2.8.2
- Update sqwebmail to 5.8.2
- Update courier-authlib to 0.66.2
- Some plist and Makefile modernization

Approved by:		oliver@ (as maintainer of various of these ports)
Differential Revision:	https://reviews.freebsd.org/D2391
2015-04-30 09:14:47 +00:00

38 lines
870 B
C

--- libs/liblock/locktest.c.orig 2014-07-13 13:58:08 UTC
+++ libs/liblock/locktest.c
@@ -3,6 +3,7 @@
** distribution information.
*/
+#include <paths.h>
#include "liblock.h"
#if USE_FCNTL
#include "lockfcntl.c"
@@ -20,7 +21,7 @@
int main()
{
-#define FILENAME "courier-imap.locktest.XXXXXXXXXX"
+#define FILENAME "courier-authlib.locktest.XXXXXXXXXX"
int fd[2];
pid_t p;
int s;
@@ -29,7 +30,7 @@ int f;
char *name;
const char *tmpdir;
if ((tmpdir = (char *)getenv("TMPDIR")) == NULL || !*tmpdir)
- tmpdir = "/tmp";
+ tmpdir = _PATH_TMP;
if ((name=malloc(strlen(tmpdir)+sizeof(FILENAME)+1)) == NULL)
{
@@ -37,7 +38,8 @@ int f;
exit(1);
}
- (void)sprintf(name, "%s/%s", tmpdir, FILENAME);
+ (void)sprintf(name, "%s%s%s", tmpdir,
+ (tmpdir[strlen(tmpdir) - 1] == '/') ? "" : "/", FILENAME);
signal(SIGCHLD, SIG_DFL);
if (pipe(fd))