SVN r313701 breaks build
Stephen Kiernan
hackagadget at gmail.com
Mon Feb 13 18:52:03 UTC 2017
Thanks for point that out. I'm not sure how that slipped in when I built
all machine types before review submission.
I'll commit a fix for the break.
On Feb 13, 2017 1:43 PM, "Michael Butler" <imb at protected-networks.net>
wrote:
> An opening brace was missed in the change; fix as below:
>
>
> Index: sys/dev/md/md.c
> ===================================================================
> --- sys/dev/md/md.c (revision 313701)
> +++ sys/dev/md/md.c (working copy)
> @@ -1860,7 +1860,7 @@
> sbuf_printf(sb, "%s<type>%s</type>\n", indent,
> type);
> if ((mp->type == MD_VNODE && mp->vnode != NULL) ||
> - (mp->type == MD_PRELOAD && mp->file[0] !=
> '\0'))
> + (mp->type == MD_PRELOAD && mp->file[0] !=
> '\0')) {
> sbuf_printf(sb, "%s<file>", indent);
> g_conf_printf_escaped(sb, "%s", mp->file);
> sbuf_printf(sb, "</file>\n");
>
>
More information about the freebsd-current
mailing list