* mu_maildir_mkmdir => mu_maildir_mkdir

This commit is contained in:
Dirk-Jan C. Binnema
2010-12-05 15:40:40 +02:00
parent badc37d3b5
commit 8321f6718a
4 changed files with 12 additions and 9 deletions

View File

@ -106,11 +106,11 @@ create_noindex (const char *path)
}
gboolean
mu_maildir_mkmdir (const char* path, mode_t mode, gboolean noindex)
mu_maildir_mkdir (const char* path, mode_t mode, gboolean noindex)
{
g_return_val_if_fail (path, FALSE);
MU_WRITE_LOG ("mu_maildir_mkdir (%s, %o, %s)",
MU_WRITE_LOG ("%s (%s, %o, %s)", __FUNCTION__,
path, mode, noindex ?"TRUE":"FALSE");
if (!create_maildir (path, mode))