svn commit: r332876 - head/usr.bin/grep
Kyle Evans
kevans at FreeBSD.org
Sun Apr 22 23:51:24 UTC 2018
Author: kevans
Date: Sun Apr 22 23:51:24 2018
New Revision: 332876
URL: https://svnweb.freebsd.org/changeset/base/332876
Log:
bsdgrep: Fix build failure WITHOUT_LZMA (incorrect bracket placement)
Submitted by: sbruno
Reported by: sbruno
Modified:
head/usr.bin/grep/file.c
Modified: head/usr.bin/grep/file.c
==============================================================================
--- head/usr.bin/grep/file.c Sun Apr 22 23:10:37 2018 (r332875)
+++ head/usr.bin/grep/file.c Sun Apr 22 23:51:24 2018 (r332876)
@@ -337,8 +337,8 @@ grep_open(const char *path)
lstrm.avail_out = MAXBUFSIZ;
laction = LZMA_RUN;
break;
- }
#endif
+ }
/* Fill read buffer, also catches errors early */
if (bufrem == 0 && grep_refill(f) != 0)
More information about the svn-src-head
mailing list