diff options
author | Dan Winship <danw@src.gnome.org> | 2001-10-24 00:18:47 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-10-24 00:18:47 +0800 |
commit | 66efbe69a2d8be17f17f899a0ddd7342cf22ee4b (patch) | |
tree | 5602fbdaa7ab991d71e7aaac46636062289ebfa8 /camel/camel-mime-utils.c | |
parent | e60fb1655fc73e998c10f9abcec08615d4766ce2 (diff) | |
download | gsoc2013-evolution-66efbe69a2d8be17f17f899a0ddd7342cf22ee4b.tar.gz gsoc2013-evolution-66efbe69a2d8be17f17f899a0ddd7342cf22ee4b.tar.zst gsoc2013-evolution-66efbe69a2d8be17f17f899a0ddd7342cf22ee4b.zip |
Remove an extra * in one of the regexps that glibc apparently doesn't mind
* camel-mime-utils.c (mail_list_magic): Remove an extra * in one
of the regexps that glibc apparently doesn't mind but bsd does.
svn path=/trunk/; revision=13942
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 5598afe62d..706a1ff9c0 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -3653,7 +3653,7 @@ static struct { /* X-Mailing-List: gnome-hackers@gnome.org */ /* X-Mailing-List: gnome-hackers */ /* X-Mailing-List: <gnome-hackers> */ - { "X-Mailing-List", " <?*([^@>]+)@?([^ \n\t\r>]*)" }, + { "X-Mailing-List", " <?([^@>]+)@?([^ \n\t\r>]*)" }, /* X-Loop: gnome-hackers@gnome.org */ { "X-Loop", " *([^@]+)@?([^ \n\t\r>]*)" }, /* List-Id: GNOME stuff <gnome-hackers.gnome.org> */ |