From 0a8d38d5e85788566ca1dfff972297a348732fad Mon Sep 17 00:00:00 2001 From: louie Date: Tue, 15 Sep 2020 17:06:17 -0700 Subject: Fixed hide and hideFile bug --- read_cfg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'read_cfg.c') diff --git a/read_cfg.c b/read_cfg.c index 435b990..6007a91 100644 --- a/read_cfg.c +++ b/read_cfg.c @@ -265,7 +265,7 @@ void check_line(char *buffer, char **options, int ln){ e = get_entries(get_ghead(g[i]), e_count); for(j = 0; j < e_count; j++){ - if(!strcmp((search_res == 9 ? get_ename(e[j]) : get_epath(e[j])), strip_quotes(args[1]))) break; + if(!strcmp((search_res == 8 ? get_ename(e[j]) : get_epath(e[j])), strip_quotes(args[1]))) break; } if(j < e_count){ -- cgit