aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2004-01-15 14:23:13 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-01-15 14:23:13 +0800
commit351cfd0065505d0dbce938a3838c55be9048deda (patch)
treefdeada7c2dbcefba1613e931a583729bdddf4227 /camel
parent1f36dc67c07a017659d0fb2b543d8706b5425e0b (diff)
downloadgsoc2013-evolution-351cfd0065505d0dbce938a3838c55be9048deda.tar
gsoc2013-evolution-351cfd0065505d0dbce938a3838c55be9048deda.tar.gz
gsoc2013-evolution-351cfd0065505d0dbce938a3838c55be9048deda.tar.bz2
gsoc2013-evolution-351cfd0065505d0dbce938a3838c55be9048deda.tar.lz
gsoc2013-evolution-351cfd0065505d0dbce938a3838c55be9048deda.tar.xz
gsoc2013-evolution-351cfd0065505d0dbce938a3838c55be9048deda.tar.zst
gsoc2013-evolution-351cfd0065505d0dbce938a3838c55be9048deda.zip
remove debugs, oops.
svn path=/trunk/; revision=24234
Diffstat (limited to 'camel')
-rw-r--r--camel/camel-vee-store.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/camel/camel-vee-store.c b/camel/camel-vee-store.c
index 2d15bac7c3..8e5273ec64 100644
--- a/camel/camel-vee-store.c
+++ b/camel/camel-vee-store.c
@@ -219,7 +219,7 @@ vee_get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExce
GHashTable *infos_hash;
int i;
- printf("Get folder info '%s'\n", top?top:"<null>");
+ d(printf("Get folder info '%s'\n", top?top:"<null>"));
infos_hash = g_hash_table_new(g_str_hash, g_str_equal);
folders = camel_object_bag_list(store->folders);
@@ -230,7 +230,7 @@ vee_get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExce
char *name = ((CamelFolder *)folder)->full_name, *pname, *tmp;
CamelFolderInfo *pinfo;
- printf("folder '%s'\n", name);
+ d(printf("folder '%s'\n", name));
/* check we have to include this one */
if (top) {
@@ -249,7 +249,7 @@ vee_get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExce
add = strchr(name, '/') == NULL;
}
- printf("%sadding '%s'\n", add?"":"not ", name);
+ d(printf("%sadding '%s'\n", add?"":"not ", name));
if (add) {
/* ensures unread is correct */
@@ -274,7 +274,7 @@ vee_get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExce
/* check for parent, if present, update flags and if adding, update parent linkage */
pname = g_strdup(((CamelFolder *)folder)->full_name);
- printf("looking up parent of '%s'\n", pname);
+ d(printf("looking up parent of '%s'\n", pname));
tmp = strrchr(pname, '/');
if (tmp) {
*tmp = 0;
@@ -284,7 +284,7 @@ vee_get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExce
if (pinfo) {
pinfo->flags = (pinfo->flags & ~(CAMEL_FOLDER_CHILDREN|CAMEL_FOLDER_NOCHILDREN))|CAMEL_FOLDER_CHILDREN;
- printf("updating parent flags for children '%s' %08x\n", pinfo->full_name, pinfo->flags);
+ d(printf("updating parent flags for children '%s' %08x\n", pinfo->full_name, pinfo->flags));
tail = pinfo->child;
if (tail == NULL)
pinfo->child = info;