summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2013-03-31 01:42:28 +0000
committerbluhm <bluhm@openbsd.org>2013-03-31 01:42:28 +0000
commit61bd13d23aa91fbce1fda489e732d2e70a2609d7 (patch)
treea8104e0fc6a87eb395ed0c9b0a19d67fb30c0e3a
parentDo not transfer diverted packets into IPsec processing. They should (diff)
downloadwireguard-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.c4
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" : "");