aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Lehey <grog@FreeBSD.org>1999-03-23 04:55:23 +0000
committerGreg Lehey <grog@FreeBSD.org>1999-03-23 04:55:23 +0000
commit170cfb031158b64772531905cbd688daaee5c78f (patch)
treeaf3dcb34e2484c83679c5fca599eb511e7396b19
parent7a4bec173bee8543af934660cc497e01b6a1dbea (diff)
downloadsrc-170cfb031158b64772531905cbd688daaee5c78f.tar.gz
src-170cfb031158b64772531905cbd688daaee5c78f.zip
Print correct message if the wrong module is loaded.
Notes
Notes: svn path=/head/; revision=44959
-rw-r--r--sbin/vinum/v.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/vinum/v.c b/sbin/vinum/v.c
index 66f0c688c2da..a5b37a09c734 100644
--- a/sbin/vinum/v.c
+++ b/sbin/vinum/v.c
@@ -120,7 +120,7 @@ main(int argc, char *argv[])
{
#if __FreeBSD__ >= 3
if (modfind(WRONGMOD) >= 0) { /* wrong module loaded, */
- fprintf(stderr, "Wrong module loaded: %s. Please start %s.\n", WRONGMOD, WRONGMOD);
+ fprintf(stderr, "Wrong module loaded: %s. Please start %s.\n", VINUMMOD, WRONGMOD);
exit(1);
}
if (modfind(VINUMMOD) < 0) {