diff options
-rw-r--r-- | importers/ChangeLog | 4 | ||||
-rw-r--r-- | importers/netscape-importer.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/importers/ChangeLog b/importers/ChangeLog index 1f1ab1be48..c5c2b12994 100644 --- a/importers/ChangeLog +++ b/importers/ChangeLog @@ -1,3 +1,7 @@ +2002-05-27 Iain Holmes <iain@ximian.com> + + * netscape-importer.c: Apply patch from Christian to fix a typo. + 2002-04-29 Iain Holmes <iain@ximian.com> * Makefile.am: Link the netscape importer against camel, filters and diff --git a/importers/netscape-importer.c b/importers/netscape-importer.c index 397cfa4322..6a0d65b5b8 100644 --- a/importers/netscape-importer.c +++ b/importers/netscape-importer.c @@ -291,7 +291,7 @@ netscape_filter_parse_conditions (NsFilter *nsf, FILE *f, char *condition) if (!strcmp (type, ns_filter_condition_types[FROM])) { cond->type = FROM; } else if (!strcmp (type, ns_filter_condition_types[SUBJECT])) { - cond->type = FROM; + cond->type = SUBJECT; } else if (!strcmp (type, ns_filter_condition_types[TO])) { cond->type = TO; } else if (!strcmp (type, ns_filter_condition_types[CC])) { |