mu-maildir: No need for namespaced function names

Mu::mu_maildir_... -> Mu::maildir_...
This commit is contained in:
Dirk-Jan C. Binnema
2022-05-09 19:34:07 +03:00
parent 2a3eb229ec
commit dc69505580
8 changed files with 61 additions and 61 deletions

View File

@ -822,7 +822,7 @@ void
Server::Private::mkdir_handler(const Parameters& params)
{
const auto path{get_string_or(params, ":path")};
if (auto&& res = mu_maildir_mkdir(path, 0755, FALSE); !res)
if (auto&& res = maildir_mkdir(path, 0755, FALSE); !res)
throw res.error();
Sexp::List lst;