svn commit: r210479 - head/usr.bin/grep

[ Available lists | Index of svn-src-all | Month of Jul 2010 | Week of 25 Jul 2010 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Gabor Kovesdan <gabor@FreeBSD.org>
Date
25 Jul 2010 18:57:49
Subject
svn commit: r210479 - head/usr.bin/grep
Message-ID
201007251857.o6PIvmoS031484@svn.freebsd.org


[ Hide this part ]
Author: gabor
Date: Sun Jul 25 18:57:48 2010
New Revision: 210479
URL: http://svn.freebsd.org/changeset/base/210479

Log:
- Fix -l and -L by really surpressing output and just showing filenames

Submitted by: swell.k@gmail.com
Approved by: delphij (mentor)

Modified:
head/usr.bin/grep/util.c

Modified: head/usr.bin/grep/util.c
==============================================================================
--- head/usr.bin/grep/util.c Sun Jul 25 18:32:59 2010 (r210478)
+++ head/usr.bin/grep/util.c Sun Jul 25 18:57:48 2010 (r210479)
@@ -343,7 +343,7 @@ procline(struct str *l, int nottext)
return (c); /* Binary file */

/* Dealing with the context */
- if ((tail || c) && !cflag && !qflag) {
+ if ((tail || c) && !cflag && !qflag && !lflag && !Lflag) {
if (c) {
if (!first && !prev && !tail && Aflag)
printf("--\n");


Elapsed time: 0.109 seconds