Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Oct 2013 09:03:43 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257428 - head/usr.bin/limits
Message-ID:  <201310310903.r9V93hgm008613@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Thu Oct 31 09:03:42 2013
New Revision: 257428
URL: http://svnweb.freebsd.org/changeset/base/257428

Log:
  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

Modified:
  head/usr.bin/limits/limits.c

Modified: head/usr.bin/limits/limits.c
==============================================================================
--- head/usr.bin/limits/limits.c	Thu Oct 31 08:58:32 2013	(r257427)
+++ head/usr.bin/limits/limits.c	Thu Oct 31 09:03:42 2013	(r257428)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310310903.r9V93hgm008613>