Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Feb 2013 01:30:01 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: bin/176332: commit references a PR
Message-ID:  <201302280130.r1S1U1k0034482@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/176332; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: bin/176332: commit references a PR
Date: Thu, 28 Feb 2013 01:22:21 +0000 (UTC)

 Author: gjb (doc,ports committer)
 Date: Thu Feb 28 01:22:14 2013
 New Revision: 247441
 URL: http://svnweb.freebsd.org/changeset/base/247441
 
 Log:
   Properly handle '-h' argument.
   
   PR:		176332
   Reviewed by:	scottl
   MFC after:	3 days
 
 Modified:
   head/usr.bin/dc/dc.c
 
 Modified: head/usr.bin/dc/dc.c
 ==============================================================================
 --- head/usr.bin/dc/dc.c	Thu Feb 28 01:05:48 2013	(r247440)
 +++ head/usr.bin/dc/dc.c	Thu Feb 28 01:22:14 2013	(r247441)
 @@ -84,7 +84,7 @@ main(int argc, char *argv[])
  	bool extended_regs = false, preproc_done = false;
  
  	/* accept and ignore a single dash to be 4.4BSD dc(1) compatible */
 -	while ((ch = getopt_long(argc, argv, "e:f:Vx", long_options, NULL)) != -1) {
 +	while ((ch = getopt_long(argc, argv, "e:f:hVx", long_options, NULL)) != -1) {
  		switch (ch) {
  		case 'e':
  			if (!preproc_done)
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



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