svn commit: r303296 - stable/11/usr.bin/mail

Xin LI delphij at FreeBSD.org
Mon Jul 25 14:35:49 UTC 2016


Author: delphij
Date: Mon Jul 25 14:35:48 2016
New Revision: 303296
URL: https://svnweb.freebsd.org/changeset/base/303296

Log:
  MFC r302542:
  
  Use _PATH_DEVNULL instead of hardcoding.
  
  Approved by:	re (kib)

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

Modified: stable/11/usr.bin/mail/collect.c
==============================================================================
--- stable/11/usr.bin/mail/collect.c	Mon Jul 25 14:35:14 2016	(r303295)
+++ stable/11/usr.bin/mail/collect.c	Mon Jul 25 14:35:48 2016	(r303296)
@@ -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-all mailing list