summaryrefslogtreecommitdiff
path: root/graphics/xpaint/patches/patch-ad
blob: 68d865369ece10c8d9b596b93eb5407b36c29c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$NetBSD: patch-ad,v 1.5 1999/05/09 18:47:22 tron Exp $

--- readRC.c	1998/02/04 16:36:16	1.1
+++ readRC.c	1998/02/04 16:41:52
@@ -64,6 +64,9 @@
 static FILE *
 openTemp(char **np)
 {
+#ifdef __NetBSD__
+    int	fd;
+#endif
     char *n;
     char xx[256];
 
@@ -72,11 +75,20 @@
 
     strcpy(xx, n);
     strcat(xx, "/XPaintXXXXXXX");
+#ifdef __NetBSD__
+    if ((fd = mkstemp(xx)) < 0)
+	    return (FILE *) NULL;
+    tempName[++tempIndex] = XtNewString(xx);
+    if (np != NULL)
+	*np = tempName[tempIndex];
+    return fdopen(fd, "w");
+#else
     n = mktemp(xx);
     tempName[++tempIndex] = XtNewString(n);
     if (np != NULL)
 	*np = tempName[tempIndex];
     return fopen(tempName[tempIndex], "w");
+#endif
 }
 
 static void