Author: stevek
Date: Mon Feb 13 18:52:26 2017
New Revision: 313703
URL: https://svnweb.freebsd.org/changeset/base/313703

Log:
  Fix typo where opening brace was needed.
  
  Reported by:  Michael Butler
  Reviewed by:  sjg
  Approved by:  sjg (mentor)

Modified:
  head/sys/dev/md/md.c

Modified: head/sys/dev/md/md.c
==============================================================================
--- head/sys/dev/md/md.c        Mon Feb 13 18:39:21 2017        (r313702)
+++ head/sys/dev/md/md.c        Mon Feb 13 18:52:26 2017        (r313703)
@@ -1860,7 +1860,7 @@ g_md_dumpconf(struct sbuf *sb, const cha
                        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");
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to