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: swel...@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");
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to