diff options
Diffstat (limited to 'grep.c')
-rw-r--r-- | grep.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -69,8 +69,7 @@ static void grep_file(FILE *file) | |||
69 | int nmatches = 0; | 69 | int nmatches = 0; |
70 | 70 | ||
71 | while ((line = get_line_from_file(file)) != NULL) { | 71 | while ((line = get_line_from_file(file)) != NULL) { |
72 | if (line[strlen(line)-1] == '\n') | 72 | chomp(line); |
73 | line[strlen(line)-1] = '\0'; | ||
74 | linenum++; | 73 | linenum++; |
75 | ret = regexec(®ex, line, 0, NULL, 0); | 74 | ret = regexec(®ex, line, 0, NULL, 0); |
76 | if (ret == 0 && !invert_search) { /* match */ | 75 | if (ret == 0 && !invert_search) { /* match */ |