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 | |
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')
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-mime-utils.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 7cae3a87c7..79b420dfad 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2001-10-23 Dan Winship <danw@ximian.com> + + * camel-mime-utils.c (mail_list_magic): Remove an extra * in one + of the regexps that glibc apparently doesn't mind but bsd does. + 2001-10-23 <NotZed@Ximian.com> * providers/local/camel-mbox-summary.c: made d(x) x recompile again. 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> */ |