diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-05-10 03:52:57 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-05-10 03:52:57 +0800 |
commit | ac299fc8867f93856cf468ef6a971053ba4cc8a0 (patch) | |
tree | edead383a18f4ae50b793ab54f3566d676746c6a | |
parent | a5aed7b0a784f84e6d723f612fec6c680166b0c6 (diff) | |
download | gsoc2013-evolution-ac299fc8867f93856cf468ef6a971053ba4cc8a0.tar gsoc2013-evolution-ac299fc8867f93856cf468ef6a971053ba4cc8a0.tar.gz gsoc2013-evolution-ac299fc8867f93856cf468ef6a971053ba4cc8a0.tar.bz2 gsoc2013-evolution-ac299fc8867f93856cf468ef6a971053ba4cc8a0.tar.lz gsoc2013-evolution-ac299fc8867f93856cf468ef6a971053ba4cc8a0.tar.xz gsoc2013-evolution-ac299fc8867f93856cf468ef6a971053ba4cc8a0.tar.zst gsoc2013-evolution-ac299fc8867f93856cf468ef6a971053ba4cc8a0.zip |
Made a const char * here.
2001-05-09 Christopher James Lahey <clahey@ximian.com>
* importers/evolution-mbox-importer.c (load_file_fn): Made a const
char * here.
svn path=/trunk/; revision=9729
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/importers/evolution-mbox-importer.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 10974bcfd1..019aec7066 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-05-09 Christopher James Lahey <clahey@ximian.com> + + * importers/evolution-mbox-importer.c (load_file_fn): Made a const + char * here. + 2001-05-08 Iain Holmes <iain@ximian.com> * mail-config.[ch]: Moved all references to the Bonobo stuff into the .c file diff --git a/mail/importers/evolution-mbox-importer.c b/mail/importers/evolution-mbox-importer.c index ef9b9f1ca5..a6ee6cab29 100644 --- a/mail/importers/evolution-mbox-importer.c +++ b/mail/importers/evolution-mbox-importer.c @@ -236,7 +236,8 @@ load_file_fn (EvolutionImporter *eimporter, if (folderpath == NULL || *folderpath == '\0') importer->folder = mail_tool_get_local_inbox (NULL); else { - char *parent, *name; + char *parent; + const char *name; BonoboListener *listener; /* Make a new directory */ |