diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-03-31 01:42:29 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-03-31 01:42:29 +0000 |
commit | 407a41a466eb046367055de035cb56664707a1cd (patch) | |
tree | ebf5c6aac748c8642552663f815e2cc8443ad8ec /usr.bin/fstat/fstat.c | |
parent | 966951b5c0083da135eed90f6218dc91e6ea84e2 (diff) |
A space got lost in fstat state output, put it back.
OK deraadt@
Diffstat (limited to 'usr.bin/fstat/fstat.c')
-rw-r--r-- | usr.bin/fstat/fstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index 9e867a25e7c..1a07124cd5d 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fstat.c,v 1.74 2013/03/24 15:09:13 deraadt Exp $ */ +/* $OpenBSD: fstat.c,v 1.75 2013/03/31 01:42:28 bluhm Exp $ */ /* * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com> @@ -489,7 +489,7 @@ pipetrans(struct kinfo_file2 *kf) printf("pipe "); hide(maxaddr); - printf("state: %s%s%s", + printf(" state: %s%s%s", (kf->pipe_state & PIPE_WANTR) ? "R" : "", (kf->pipe_state & PIPE_WANTW) ? "W" : "", (kf->pipe_state & PIPE_EOF) ? "E" : ""); |