commit a98e7f2de2870f82295eaa691d7c2d52d90ba4eb
parent 2e32ae50861625f9fcd9b7cd30aa88e7b094b3a6
Author: Paul <paul@claws-mail.org>
Date: Mon, 19 Oct 2015 17:15:53 +0100
define tags dir where all the others are
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/common/defs.h b/src/common/defs.h
@@ -39,6 +39,7 @@
#define QUEUE_DIR "queue"
#define DRAFT_DIR "draft"
#define TRASH_DIR "trash"
+#define TAGS_DIR "tagsdb"
#define RC_DIR CFG_RC_DIR
#define OLD_GTK2_RC_DIR ".sylpheed-claws"
#define OLDER_GTK2_RC_DIR ".sylpheed-gtk2"
diff --git a/src/folder.c b/src/folder.c
@@ -4018,7 +4018,7 @@ static gchar *folder_item_get_tags_file(FolderItem *item)
#endif
path = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
- "tagsdb", G_DIR_SEPARATOR_S,
+ TAGS_DIR, G_DIR_SEPARATOR_S,
identifier, NULL);
g_free(identifier);