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

Gabor Kovesdan gabor at FreeBSD.org
Sun Jul 25 18:57:49 UTC 2010


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 at 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");


More information about the svn-src-all mailing list