view src/lib/safe-mkdir.h @ 22955:812e5c961328

fts: Indexing virtual mailbox didn't always index the last mails
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 03 May 2018 18:33:00 +0300
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef SAFE_MKDIR_H
#define SAFE_MKDIR_H

/* Either create a directory or make sure that it already exists with given
   permissions. If anything fails, the i_fatal() is called. Returns 1 if
   directory was created, 2 if it already existed with correct permissions,
   0 if we changed permissions. */
int safe_mkdir(const char *dir, mode_t mode, uid_t uid, gid_t gid);

#endif