svn commit: r265076 - stable/9/sbin/savecore

Mark Johnston markj at FreeBSD.org
Tue Apr 29 03:50:24 UTC 2014


Author: markj
Date: Tue Apr 29 03:50:23 2014
New Revision: 265076
URL: http://svnweb.freebsd.org/changeset/base/265076

Log:
  MFC r262775:
  Log the name of the file that we failed to open rather than an
  uninitialized buffer.

Modified:
  stable/9/sbin/savecore/savecore.c
Directory Properties:
  stable/9/sbin/savecore/   (props changed)

Modified: stable/9/sbin/savecore/savecore.c
==============================================================================
--- stable/9/sbin/savecore/savecore.c	Tue Apr 29 03:49:40 2014	(r265075)
+++ stable/9/sbin/savecore/savecore.c	Tue Apr 29 03:50:23 2014	(r265076)
@@ -549,7 +549,7 @@ DoFile(const char *savedir, const char *
 	 */
 	fdinfo = open(buf, O_WRONLY | O_CREAT | O_TRUNC, 0600);
 	if (fdinfo < 0) {
-		syslog(LOG_ERR, "%s: %m", buf);
+		syslog(LOG_ERR, "%s: %m", infoname);
 		nerr++;
 		goto closefd;
 	}


More information about the svn-src-all mailing list