aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoni Sawicki <tenox@google.com>2019-06-10 17:36:48 -0700
committerAntoni Sawicki <tenox@google.com>2019-06-10 17:36:48 -0700
commitd913db1f7b3fed4693ae823cca1699cfe88a0c4c (patch)
tree2c205184a7d249fdb888ab1074fa8a8b2aad6a03
parent45282ac417d89269259d7e375037fd0cc2ece2b2 (diff)
downloadwfm-d913db1f7b3fed4693ae823cca1699cfe88a0c4c.tar.gz
removed duplicate log file extension
-rw-r--r--dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir.c b/dir.c
index 3304b7d..033146e 100644
--- a/dir.c
+++ b/dir.c
@@ -51,7 +51,7 @@ void dir_icoinita(void) {
regcomp(&reg_pdf, "\\.(pdf|ps|eps|ai)$", REG_EXTENDED | REG_ICASE)!=0 ||
regcomp(&reg_exe, "\\.(exe|com|pif)$", REG_EXTENDED | REG_ICASE)!=0 ||
regcomp(&reg_lnk, "\\.(url|lnk|desktop|shortcut|webloc)$", REG_EXTENDED | REG_ICASE)!=0 ||
- regcomp(&reg_txt, "\\.(txt|asc|nfo|me|md|log|htm|html|shtml|js|jsp|php|xml|dtd|css|bas|c|h|cpp|cmd|bat|sh|ksh|awk|reg|log|bak|cfg|conf|py|json|yaml)$", REG_EXTENDED | REG_ICASE)!=0
+ regcomp(&reg_txt, "\\.(txt|asc|nfo|me|md|log|htm|html|shtml|js|jsp|php|xml|dtd|css|bas|c|h|cpp|cmd|bat|sh|ksh|awk|reg|bak|cfg|conf|py|json|yaml)$", REG_EXTENDED | REG_ICASE)!=0
) error("Unable to compile regex.");
}