From: Timo Sirainen Date: Tue, 21 Jun 2016 14:25:15 +0000 (+0300) Subject: fs-posix: Use ":" instead of space as the parameter separator. X-Git-Tag: 2.3.0.rc1~3447 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=06c1f686fd7cb73b34b5e61370846a692e7d3e37;p=thirdparty%2Fdovecot%2Fcore.git fs-posix: Use ":" instead of space as the parameter separator. This makes it consistent with all the other fs drivers. --- diff --git a/src/lib-fs/fs-posix.c b/src/lib-fs/fs-posix.c index bee7ff3b5d..a28ce22d9c 100644 --- a/src/lib-fs/fs-posix.c +++ b/src/lib-fs/fs-posix.c @@ -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;