]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
fs-posix: Use ":" instead of space as the parameter separator.
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Tue, 21 Jun 2016 14:25:15 +0000 (17:25 +0300)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Tue, 21 Jun 2016 14:26:34 +0000 (17:26 +0300)
This makes it consistent with all the other fs drivers.

src/lib-fs/fs-posix.c

index bee7ff3b5d821fde298e02722666c5ab98cf86d9..a28ce22d9c45e1202cc858aff77c032ca3472565 100644 (file)
@@ -88,7 +88,7 @@ fs_posix_init(struct fs *_fs, const char *args, const struct fs_settings *set)
        fs->lock_method = FS_POSIX_LOCK_METHOD_FLOCK;
        fs->mode = FS_DEFAULT_MODE;
 
-       tmp = t_strsplit_spaces(args, " ");
+       tmp = t_strsplit_spaces(args, ":");
        for (; *tmp != NULL; tmp++) {
                const char *arg = *tmp;