PERFORCE change 112566 for review
Matt Jacob
mjacob at FreeBSD.org
Fri Jan 5 14:45:03 PST 2007
http://perforce.freebsd.org/chv.cgi?CH=112566
Change 112566 by mjacob at mjexp on 2007/01/05 22:44:55
Fix a typo.
Affected files ...
.. //depot/projects/mjexp/sbin/geom/class/multipath/geom_multipath.c#5 edit
Differences ...
==== //depot/projects/mjexp/sbin/geom/class/multipath/geom_multipath.c#5 (text+ko) ====
@@ -58,10 +58,6 @@
"clear", G_FLAG_VERBOSE, mp_main, G_NULL_OPTS,
"[-v] prov ..."
},
- {
- "destroy", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
- "[-fv] name"
- },
G_CMD_SENTINEL
};
@@ -77,7 +73,7 @@
}
if (strcmp(name, "label") == 0) {
mp_label(req);
- } if (strcmp(name, "clear") == 0) {
+ } else if (strcmp(name, "clear") == 0) {
mp_clear(req);
} else {
gctl_error(req, "Unknown command: %s.", name);
@@ -232,4 +228,3 @@
}
}
}
-
More information about the p4-projects
mailing list