diff options
Diffstat (limited to 'mail/mail-local.c')
-rw-r--r-- | mail/mail-local.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/mail-local.c b/mail/mail-local.c index af32b45fa2..9d7b022617 100644 --- a/mail/mail-local.c +++ b/mail/mail-local.c @@ -212,9 +212,8 @@ save_metainfo (struct _local_meta *meta) xmlSetProp(node, "type", meta->format); xmlSetProp(node, "name", meta->name); xmlSetProp(node, "index", meta->indexed?"1":"0"); - -#warning "xmlSaveFile used here" - ret = xmlSaveFile (meta->path, doc); + + ret = e_xml_save_file (meta->path, doc); xmlFreeDoc (doc); |