svn commit: r303280 - stable/10/usr.bin/mail

Xin LI delphij at FreeBSD.org
Mon Jul 25 00:46:02 UTC 2016


Author: delphij
Date: Mon Jul 25 00:46:01 2016
New Revision: 303280
URL: https://svnweb.freebsd.org/changeset/base/303280

Log:
  MFC r302542:
  
  Use _PATH_DEVNULL instead of hardcoding.

Modified:
  stable/10/usr.bin/mail/collect.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/mail/collect.c
==============================================================================
--- stable/10/usr.bin/mail/collect.c	Sun Jul 24 23:40:33 2016	(r303279)
+++ stable/10/usr.bin/mail/collect.c	Mon Jul 25 00:46:01 2016	(r303280)
@@ -339,9 +339,9 @@ cont:
 				int nullfd, tempfd, rc;
 				char tempname2[PATHSIZE];
 
-				if ((nullfd = open("/dev/null", O_RDONLY, 0))
+				if ((nullfd = open(_PATH_DEVNULL, O_RDONLY, 0))
 				    == -1) {
-					warn("/dev/null");
+					warn(_PATH_DEVNULL);
 					break;
 				}
 


More information about the svn-src-stable mailing list