From 616d409f7cb18b0dfcac25cb17574e4d9d39d293 Mon Sep 17 00:00:00 2001 From: bertrand Date: Thu, 5 Aug 1999 16:02:54 +0000 Subject: Some notes. 1999-08-05 bertrand * camel/README.HACKING: Some notes. * camel/CODING.STYLE: short note about coding style. * camel/README.COPYRIGHT: Note about copyright policy. * camel/providers/MH/camel-mh-folder.c (_list_subfolders): minor typo fixes. svn path=/trunk/; revision=1081 --- camel/providers/MH/camel-mh-folder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'camel/providers/MH') diff --git a/camel/providers/MH/camel-mh-folder.c b/camel/providers/MH/camel-mh-folder.c index ad910f4005..6f7b419841 100644 --- a/camel/providers/MH/camel-mh-folder.c +++ b/camel/providers/MH/camel-mh-folder.c @@ -301,15 +301,15 @@ _list_subfolders(CamelFolder *folder) parent_class->delete_messages (folder); directory_path = mh_folder->directory_path; - if (!directory_path) return FALSE; + if (!directory_path) return NULL; - if (!camel_folder_exists (folder)) return TRUE; + if (!camel_folder_exists (folder)) return NULL; dir_handle = opendir (directory_path); /* read first entry in the directory */ dir_entry = readdir (dir_handle); - while ((stat_error != -1) && (unlink_error != -1) && (dir_entry != NULL)) { + while ((stat_error != -1) && (dir_entry != NULL)) { /* get the name of the next entry in the dir */ entry_name = dir_entry->d_name; -- cgit v1.2.3