Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
0c4f6a69
...
0c4f6a6918d7caf825a6cfd70c453f2cbc014807
authored
2004-01-05 13:48:26 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(sieve_match_part_checker): Use extended regular expressions by default.
1 parent
f6962de8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
libsieve/comparator.c
libsieve/comparator.c
View file @
0c4f6a6
...
...
@@ -339,10 +339,9 @@ sieve_match_part_checker (const char *name, list_t tags, list_t args)
if
(
list_get
(
args
,
1
,
(
void
**
)
&
val
))
return
0
;
rd
.
flags
=
REG_EXTENDED
;
if
(
strcmp
(
compname
,
"i;ascii-casemap"
)
==
0
)
rd
.
flags
=
REG_ICASE
;
else
rd
.
flags
=
0
;
rd
.
flags
|=
REG_ICASE
;
list_create
(
&
rd
.
list
);
...
...
Please
register
or
sign in
to post a comment