diff options
author | 2013-03-31 01:42:28 +0000 | |
---|---|---|
committer | 2013-03-31 01:42:28 +0000 | |
commit | 61bd13d23aa91fbce1fda489e732d2e70a2609d7 (patch) | |
tree | a8104e0fc6a87eb395ed0c9b0a19d67fb30c0e3a | |
parent | Do not transfer diverted packets into IPsec processing. They should (diff) | |
download | wireguard-openbsd-61bd13d23aa91fbce1fda489e732d2e70a2609d7.tar.xz wireguard-openbsd-61bd13d23aa91fbce1fda489e732d2e70a2609d7.zip |
A space got lost in fstat state output, put it back.
OK deraadt@
-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" : ""); |