svn commit: r320918 - head/sbin/savecore

Mark Johnston markj at FreeBSD.org
Wed Jul 12 18:29:26 UTC 2017


Author: markj
Date: Wed Jul 12 18:29:25 2017
New Revision: 320918
URL: https://svnweb.freebsd.org/changeset/base/320918

Log:
  Add a newline after the version string.
  
  MFC after:	3 days

Modified:
  head/sbin/savecore/savecore.c

Modified: head/sbin/savecore/savecore.c
==============================================================================
--- head/sbin/savecore/savecore.c	Wed Jul 12 17:51:00 2017	(r320917)
+++ head/sbin/savecore/savecore.c	Wed Jul 12 18:29:25 2017	(r320918)
@@ -119,7 +119,7 @@ printheader(xo_handle_t *xo, const struct kerneldumphe
 	xo_emit_h(xo, "{P:  }{Lwc:Dumptime}{:dumptime/%s}", ctime(&t));
 	xo_emit_h(xo, "{P:  }{Lwc:Hostname}{:hostname/%s}\n", h->hostname);
 	xo_emit_h(xo, "{P:  }{Lwc:Magic}{:magic/%s}\n", h->magic);
-	xo_emit_h(xo, "{P:  }{Lwc:Version String}{:version_string/%s}", h->versionstring);
+	xo_emit_h(xo, "{P:  }{Lwc:Version String}{:version_string/%s}\n", h->versionstring);
 	xo_emit_h(xo, "{P:  }{Lwc:Panic String}{:panic_string/%s}\n", h->panicstring);
 	xo_emit_h(xo, "{P:  }{Lwc:Dump Parity}{:dump_parity/%u}\n", h->parity);
 	xo_emit_h(xo, "{P:  }{Lwc:Bounds}{:bounds/%d}\n", bounds);


More information about the svn-src-all mailing list