Date: Sun, 27 Dec 2015 17:09:23 +0000 (UTC) From: Allan Jude <allanjude@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r292779 - head/sys/geom Message-ID: <201512271709.tBRH9NCt023037@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: allanjude Date: Sun Dec 27 17:09:23 2015 New Revision: 292779 URL: https://svnweb.freebsd.org/changeset/base/292779 Log: Fix incorrect error message in geom map If geom_map fails to find the end of a mapped partition based on a search, it would return the incorrect error message, stating it could not parse the START value Reviewed by: adrian Approved by: bapt (mentor) Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D4187 Modified: head/sys/geom/geom_map.c Modified: head/sys/geom/geom_map.c ============================================================================== --- head/sys/geom/geom_map.c Sun Dec 27 15:55:15 2015 (r292778) +++ head/sys/geom/geom_map.c Sun Dec 27 17:09:23 2015 (r292779) @@ -259,7 +259,7 @@ g_map_parse_part(struct g_class *mp, str } if (find_marker(cp, value, &end) != 0) { if (bootverbose) { - printf("MAP: \"%s\" can't parse/use start value\n", + printf("MAP: \"%s\" can't parse/use end value\n", name); } return (1);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512271709.tBRH9NCt023037>