openbsd-ports/editors/xemacs21/stable/patches/patch-lib-src_movemail_c
aanriot eb757943fa move Xemacs 21.4 in xemacs21/stable, in order to import Xemacs 21.5
later (the actively developped branch, which has Xft support etc.)

help and ok matthieu@, "looks ok" ajacoutot@
2007-09-18 18:56:03 +00:00

20 lines
634 B
Plaintext

$OpenBSD: patch-lib-src_movemail_c,v 1.1 2007/09/18 18:56:03 aanriot Exp $
--- lib-src/movemail.c.orig Sun Sep 25 15:10:55 2005
+++ lib-src/movemail.c Sun Sep 25 15:12:18 2005
@@ -588,14 +588,12 @@ lock_dot(char *filename)
p--;
*p = 0;
strcpy (p, "EXXXXXX");
- mktemp (tempname);
- unlink (tempname);
for (;;)
{
/* Create the lock file, but not under the lock file name. */
/* Give up if cannot do that. */
- desc = open (tempname, O_WRONLY | O_CREAT | O_EXCL, 0666);
+ desc = mkstemp (tempname);
if (desc < 0)
{
char *message = (char *) xmalloc (strlen (tempname) + 50);