From 2861e622c9e0de846bd3cbbfe89d0aa7d0c8e5c3 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Mon, 8 Nov 2010 08:46:24 +0200 Subject: [PATCH] * mu-maildir.c: cosmetics --- src/mu-maildir.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mu-maildir.c b/src/mu-maildir.c index b6064496..9e9e63bd 100644 --- a/src/mu-maildir.c +++ b/src/mu-maildir.c @@ -17,7 +17,7 @@ ** */ -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H #include "config.h" #endif /*HAVE_CONFIG_H*/ @@ -442,7 +442,7 @@ dirent_copy (struct dirent *entry) struct dirent *d; /* NOTE: simply memcpy'ing sizeof(struct dirent) bytes will - * give memory errors. Also note, g_slice_new has been to + * give memory errors. Also note, g_slice_new has been known to * crash on FreeBSD */ d = g_slice_new (struct dirent); @@ -473,10 +473,10 @@ dirent_cmp (struct dirent *d1, struct dirent *d2) /* we sort the inodes if the FS's dirent has them. It makes - * file-access much faster on some filesystems, such as - * ext3,4. readdir_with_stat_fallback is a wrapper for readdir - * that falls back to (slow) stats if the FS does not support - * entry->d_type + * file-access much faster on some filesystems, such as ext3,4. + * + * readdir_with_stat_fallback is a wrapper for readdir that falls back + * to (slow) lstats if the FS does not support entry->d_type */ static MuResult process_dir_entries_sorted (DIR *dir, const char* path, const char* mdir,