diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-05-27 22:50:45 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-05-27 22:50:45 +0800 |
commit | c07d953f5dca0a7a58c93d7961f734ed3a526684 (patch) | |
tree | b0619f8fdda4e38bfcb19e75120cd81255205b4e /importers | |
parent | 08f9758626f41561d7420ece2e59489b24f29324 (diff) | |
download | gsoc2013-evolution-c07d953f5dca0a7a58c93d7961f734ed3a526684.tar.gz gsoc2013-evolution-c07d953f5dca0a7a58c93d7961f734ed3a526684.tar.zst gsoc2013-evolution-c07d953f5dca0a7a58c93d7961f734ed3a526684.zip |
Apply patch to fix a typo
svn path=/trunk/; revision=17021
Diffstat (limited to 'importers')
-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])) { |