From 1d01c8dad13eeab68241617b0ca981a8582b8215 Mon Sep 17 00:00:00 2001 From: Bertrand Guiheneuf Date: Sun, 30 May 1999 11:40:05 +0000 Subject: remove leading and trailing spaces in recipient addresses. * camel/camel-mime-message.c (_set_recipient_list_from_string): remove leading and trailing spaces in recipient addresses. * camel/gmime-utils.c (_store_header_pair_from_gstring): remove leading and trailing spaces from header values. * camel/gstring-util.c (g_string_trim): new func: remove leading or trailng chars from a specified char set. (g_string_split): allow trimming of substrings. * tests/test1.c (main): remove gtk_main call svn path=/trunk/; revision=958 --- camel/camel-folder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'camel/camel-folder.c') diff --git a/camel/camel-folder.c b/camel/camel-folder.c index 26b051c4d7..d7b54075be 100644 --- a/camel/camel-folder.c +++ b/camel/camel-folder.c @@ -367,7 +367,7 @@ _create(CamelFolder *folder) if (folder->parent_folder) camel_folder_create(folder->parent_folder); else { if (folder->full_name) { - dich_result = g_string_dichotomy(folder->full_name, sep, &prefix, NULL, STRIP_TRAILING | RIGHT_DIR); + dich_result = g_string_dichotomy(folder->full_name, sep, &prefix, NULL, DICHOTOMY_STRIP_TRAILING | DICHOTOMY_RIGHT_DIR); if (dich_result!='o') { g_warning("I have to handle the case where the path is not OK\n"); return FALSE; -- cgit