diff options
author | Vincent Untz <vuntz@gnome.org> | 2012-01-10 01:17:54 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-01-10 01:17:54 +0800 |
commit | f15c6e4e8fcfce0b5d12871db6a48840dc34c38b (patch) | |
tree | 6ed6d7f95f4cc2f446b88de5140146533f8464da /plugins/pst-import | |
parent | df77623924aaa03cba0e861ddf840de1f2b8f28a (diff) | |
download | gsoc2013-evolution-f15c6e4e8fcfce0b5d12871db6a48840dc34c38b.tar.gz gsoc2013-evolution-f15c6e4e8fcfce0b5d12871db6a48840dc34c38b.tar.zst gsoc2013-evolution-f15c6e4e8fcfce0b5d12871db6a48840dc34c38b.zip |
Bug #667346 - Fix build with libpst 0.6.54 and require this version
Diffstat (limited to 'plugins/pst-import')
-rw-r--r-- | plugins/pst-import/pst-importer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pst-import/pst-importer.c b/plugins/pst-import/pst-importer.c index 5b990539d7..4305827ed1 100644 --- a/plugins/pst-import/pst-importer.c +++ b/plugins/pst-import/pst-importer.c @@ -2219,7 +2219,7 @@ pst_init (pst_file *pst, DEBUG_REGISTER_CLOSE (); #endif - if (pst_open (pst, filename) < 0) { + if (pst_open (pst, filename, NULL) < 0) { pst_error_msg ("Error opening PST file %s", filename); return -1; } |