diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2013-10-31 09:03:42 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2013-10-31 09:03:42 +0000 |
commit | 4c66d8f9787d05efd94285e583bffbd2b944c946 (patch) | |
tree | 494ad9fac78c8c34752f5b6ffa0b76a86ffcf1b5 /usr.bin/limits | |
parent | de111151f502fe9940ab27133bebf4683f20ba24 (diff) |
Fix long line and record proper commit message for r257427:
Add the '-k' option for getopt() call and usage.
Submitted by: Stefan Neudorf
PR: bin/183494
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=257428
Diffstat (limited to 'usr.bin/limits')
-rw-r--r-- | usr.bin/limits/limits.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/limits/limits.c b/usr.bin/limits/limits.c index 3a192e3f5755..15864d3b74f2 100644 --- a/usr.bin/limits/limits.c +++ b/usr.bin/limits/limits.c @@ -287,7 +287,8 @@ main(int argc, char *argv[]) pid = -1; optarg = NULL; - while ((ch = getopt(argc, argv, ":EeC:U:BSHP:ab:c:d:f:l:m:n:s:t:u:v:p:w:k:")) != -1) { + while ((ch = getopt(argc, argv, + ":EeC:U:BSHP:ab:c:d:f:l:m:n:s:t:u:v:p:w:k:")) != -1) { switch(ch) { case 'a': doall = 1; |