summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Warner <james.warner@comcast.net>2011-12-28 01:27:27 -0600
committerCraig Small <csmall@enc.com.au>2012-01-02 16:27:38 +1100
commit94468ac0b3be07495c1f4eccc9806bb812d93718 (patch)
tree9c2e78dcedc7ec03ced0fd8fef2adb7aadbd3d59
parent131f935c49e09a25ddb4109fdac5313d256d0ee4 (diff)
downloadprocps-ng-94468ac0b3be07495c1f4eccc9806bb812d93718.tar.gz
w: fix broken -o (old-style) short form option
-rw-r--r--w.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/w.c b/w.c
index 9a1a2f4..0d09bc4 100644
--- a/w.c
+++ b/w.c
@@ -352,7 +352,7 @@ int main(int argc, char **argv)
#endif
while ((ch =
- getopt_long(argc, argv, "hlusfV", longopts, NULL)) != -1)
+ getopt_long(argc, argv, "husfoV", longopts, NULL)) != -1)
switch (ch) {
case 'h':
header = 0;