diff options
author | grog <grog@FreeBSD.org> | 1999-03-24 00:43:05 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-03-24 00:43:05 +0000 |
commit | 52877fac885a5e64170922cd472dfc9630a8b5a0 (patch) | |
tree | 2ccff166fb7265e55baa7e54b25d577d5e17606e | |
parent | db2112b353fd67fffb55492403f957d2c04e5642 (diff) | |
download | FreeBSD-src-52877fac885a5e64170922cd472dfc9630a8b5a0.zip FreeBSD-src-52877fac885a5e64170922cd472dfc9630a8b5a0.tar.gz |
Correct the text of an obscure error message.
-rw-r--r-- | sys/dev/vinum/vinumstate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinumstate.c b/sys/dev/vinum/vinumstate.c index d155118..854b128 100644 --- a/sys/dev/vinum/vinumstate.c +++ b/sys/dev/vinum/vinumstate.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumstate.c,v 2.10 1999/01/17 06:19:23 grog Exp grog $ + * $Id: vinumstate.c,v 2.11 1999/03/13 04:47:09 grog Exp grog $ */ #define REALLYKERNEL @@ -901,7 +901,7 @@ setstate(struct vinum_ioctl_msg *msg) plex = &PLEX[msg->index]; if ((msg->index >= vinum_conf.plexes_used) || (plex->state == plex_unallocated)) { - sprintf(ioctl_reply->msg, "Invalid subdisk %d", msg->index); + sprintf(ioctl_reply->msg, "Invalid plex %d", msg->index); ioctl_reply->error = EFAULT; return; } |