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;
}
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
To unsubscribe, send any mail to "[email protected]"