diff options
author | Not Zed <NotZed@Ximian.com> | 2003-02-27 12:53:09 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2003-02-27 12:53:09 +0800 |
commit | 531d7a496f4d673a62615175b9332536e924502f (patch) | |
tree | f0fc63a92c6ad2f84b92310746c5f300b1492d90 /camel/providers | |
parent | da0afe53d2d15e3261aa6f38be02f811139a3d27 (diff) | |
download | gsoc2013-evolution-531d7a496f4d673a62615175b9332536e924502f.tar gsoc2013-evolution-531d7a496f4d673a62615175b9332536e924502f.tar.gz gsoc2013-evolution-531d7a496f4d673a62615175b9332536e924502f.tar.bz2 gsoc2013-evolution-531d7a496f4d673a62615175b9332536e924502f.tar.lz gsoc2013-evolution-531d7a496f4d673a62615175b9332536e924502f.tar.xz gsoc2013-evolution-531d7a496f4d673a62615175b9332536e924502f.tar.zst gsoc2013-evolution-531d7a496f4d673a62615175b9332536e924502f.zip |
Undo jeff's changes.
2003-02-27 Not Zed <NotZed@Ximian.com>
* camel-multipart-signed.c: Undo jeff's changes.
* providers/local/camel-spool-store.c (scan_dir): Fix a paste-o in
the object_bag_get key.
svn path=/trunk/; revision=20084
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/camel-spool-store.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/camel/providers/local/camel-spool-store.c b/camel/providers/local/camel-spool-store.c index c8d76f8a63..f1f264f94a 100644 --- a/camel/providers/local/camel-spool-store.c +++ b/camel/providers/local/camel-spool-store.c @@ -23,6 +23,10 @@ #include <config.h> #endif +#ifdef HAVE_ALLOCA_H +#include <alloca.h> +#endif + #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> @@ -273,8 +277,8 @@ static int scan_dir(CamelStore *store, GHashTable *visited, char *root, const ch /* look for folders matching the right structure, recursively */ if (path) { - name = g_alloca (strlen (root) + strlen (path) + 2); - sprintf (name, "%s/%s", root, path); + name = alloca(strlen(root) + strlen(path) + 2); + sprintf(name, "%s/%s", root, path); } else name = root; @@ -346,7 +350,7 @@ static int scan_dir(CamelStore *store, GHashTable *visited, char *root, const ch if (S_ISREG(st.st_mode)) { /* first, see if we already have it open */ - folder = camel_object_bag_get(store->folders, path); + folder = camel_object_bag_get(store->folders, fname); if (folder) { /* should this refresh if ! FAST? */ unread = camel_folder_get_unread_message_count(folder); |