diff options
-rw-r--r-- | e-util/ChangeLog | 4 | ||||
-rw-r--r-- | e-util/e-meta.c | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 446a27e687..ded12adec9 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,7 @@ +2003-03-25 Not Zed <NotZed@Ximian.com> + + * e-meta.c (meta_filename): fix a typo & some missing headers. + 2003-03-24 Dan Winship <danw@ximian.com> * e-dialog-utils.c (e_dialog_set_transient_for, diff --git a/e-util/e-meta.c b/e-util/e-meta.c index 56e8d3bca9..2b0dce5c30 100644 --- a/e-util/e-meta.c +++ b/e-util/e-meta.c @@ -30,10 +30,6 @@ #include <glib.h> -#include "e-meta.h" - -#include <gal/util/e-util.h> - #include <libxml/parser.h> #include <libxml/tree.h> #include <libxml/xmlmemory.h> @@ -43,6 +39,10 @@ #include <errno.h> #include <string.h> +#include <gal/util/e-xml-utils.h> +#include <gal/util/e-util.h> +#include "e-meta.h" + static GObjectClass *e_meta_parent_class; struct _meta_data { @@ -441,7 +441,7 @@ static char *meta_filename(const char *base, const char *key) while ( (c = *p++) ) { if (c == '/') - c == '_'; + c = '_'; *o++ = c; } strcpy(o, ".emeta"); |