Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.sbin/pstat Don't use same character for different flags.
details: https://anonhg.NetBSD.org/src/rev/31886f79cd27
branches: trunk
changeset: 522598:31886f79cd27
user: enami <enami%NetBSD.org@localhost>
date: Fri Feb 22 11:25:37 2002 +0000
description:
Don't use same character for different flags.
diffstat:
usr.sbin/pstat/pstat.8 | 4 ++--
usr.sbin/pstat/pstat.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 34cbbc0707ee -r 31886f79cd27 usr.sbin/pstat/pstat.8
--- a/usr.sbin/pstat/pstat.8 Fri Feb 22 10:13:41 2002 +0000
+++ b/usr.sbin/pstat/pstat.8 Fri Feb 22 11:25:37 2002 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: pstat.8,v 1.29 2002/02/21 10:58:00 enami Exp $
+.\" $NetBSD: pstat.8,v 1.30 2002/02/22 11:25:37 enami Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993, 1994
.\" The Regents of the University of California. All rights reserved.
@@ -314,7 +314,7 @@
exclusive lock applied
.It c
is being cleaned (LFS)
-.It a
+.It D
directory operation in progress (LFS)
.It s
blocks to be freed in free count
diff -r 34cbbc0707ee -r 31886f79cd27 usr.sbin/pstat/pstat.c
--- a/usr.sbin/pstat/pstat.c Fri Feb 22 10:13:41 2002 +0000
+++ b/usr.sbin/pstat/pstat.c Fri Feb 22 11:25:37 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pstat.c,v 1.69 2002/02/22 05:43:20 enami Exp $ */
+/* $NetBSD: pstat.c,v 1.70 2002/02/22 11:25:37 enami Exp $ */
/*-
* Copyright (c) 1980, 1991, 1993, 1994
@@ -43,7 +43,7 @@
#if 0
static char sccsid[] = "@(#)pstat.c 8.16 (Berkeley) 5/9/95";
#else
-__RCSID("$NetBSD: pstat.c,v 1.69 2002/02/22 05:43:20 enami Exp $");
+__RCSID("$NetBSD: pstat.c,v 1.70 2002/02/22 11:25:37 enami Exp $");
#endif
#endif /* not lint */
@@ -482,7 +482,7 @@
if (flag & IN_CLEANING)
*flags++ = 'c';
if (flag & IN_ADIROP)
- *flags++ = 'a';
+ *flags++ = 'D';
if (flag & IN_SPACECOUNTED)
*flags++ = 's';
if (flag == 0)
Home |
Main Index |
Thread Index |
Old Index