From 25641fed48fea9eb9cd0d6cdcc6ed14a2fe0320d Mon Sep 17 00:00:00 2001 From: Greg Lehey Date: Sat, 13 Mar 1999 07:44:17 +0000 Subject: [PATCH] info command: Remove opencount parameter, print value of open flag. --- sbin/vinum/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/vinum/list.c b/sbin/vinum/list.c index 20046244358d..452416e6d0a6 100644 --- a/sbin/vinum/list.c +++ b/sbin/vinum/list.c @@ -605,7 +605,7 @@ vinum_info(int argc, char *argv[], char *argv0[]) perror("Can't get vinum config"); return; } - printf("Flags: 0x%x\t%d opens\n", vinum_conf.flags, vinum_conf.opencount); + printf("Flags: 0x%x\n", vinum_conf.flags); if (ioctl(superdev, VINUM_MEMINFO, &meminfo) < 0) { perror("Can't get information"); return;