Module Name: src
Committed By: pgoyette
Date: Tue May 31 06:55:02 UTC 2016
Modified Files:
src/usr.bin/xinstall: xinstall.c
Log Message:
Move __MKTEMP_OK up earlier so it has an actual impact. Reduces the
number of warnings during build.
XXX There are still some other warnings remaining to be resolved.
Fixes PR bin/48195 although we really should go back someday and fix
this correctly (by replacing all uses of mktemp(3)!)
To generate a diff of this commit:
cvs rdiff -u -r1.124 -r1.125 src/usr.bin/xinstall/xinstall.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/xinstall/xinstall.c
diff -u src/usr.bin/xinstall/xinstall.c:1.124 src/usr.bin/xinstall/xinstall.c:1.125
--- src/usr.bin/xinstall/xinstall.c:1.124 Fri Jun 19 17:20:02 2015
+++ src/usr.bin/xinstall/xinstall.c Tue May 31 06:55:02 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: xinstall.c,v 1.124 2015/06/19 17:20:02 christos Exp $ */
+/* $NetBSD: xinstall.c,v 1.125 2016/05/31 06:55:02 pgoyette Exp $ */
/*
* Copyright (c) 1987, 1993
@@ -29,6 +29,8 @@
* SUCH DAMAGE.
*/
+#define __MKTEMP_OK__ /* All uses of mktemp have been checked */
+
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#else
@@ -46,11 +48,10 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 19
#if 0
static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#else
-__RCSID("$NetBSD: xinstall.c,v 1.124 2015/06/19 17:20:02 christos Exp $");
+__RCSID("$NetBSD: xinstall.c,v 1.125 2016/05/31 06:55:02 pgoyette Exp $");
#endif
#endif /* not lint */
-#define __MKTEMP_OK__ /* All uses of mktemp have been checked */
#include <sys/param.h>
#include <sys/mman.h>
#include <sys/stat.h>