diff options
| author | 2020-01-24 22:46:47 +0530 | |
|---|---|---|
| committer | 2020-01-24 22:46:47 +0530 | |
| commit | e5ad7d81fffc4a96e9112cf9bdec18b66ff735ce (patch) | |
| tree | e78f0c0017be89acc75e5f2df3a696a0f59a37c2 /src | |
| parent | 196c09ab9b3c0da940f863425c37046d9ca21a2f (diff) | |
| download | nnn-e5ad7d81fffc4a96e9112cf9bdec18b66ff735ce.tar.gz | |
PCRE 2 - fix check for filter match
Kind contribution from uno20001:
https://old.reddit.com/r/C_Programming/comments/etavho/file_manager_nnn_needs_help_with_pcre/fffk4wr/
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1902,7 +1902,7 @@ static int setfilter(regex_t *regex, const char *filter) static int visible_re(const fltrexp_t *fltrexp, const char *fname) { #ifdef PCRE - return pcre_exec(fltrexp->pcrex, NULL, fname, strlen(fname), 0, 0, NULL, 0); + return pcre_exec(fltrexp->pcrex, NULL, fname, strlen(fname), 0, 0, NULL, 0) == 0; #else return regexec(fltrexp->regex, fname, 0, NULL, 0) == 0; #endif |