Skip to content

Commit

Permalink
fs-posix: Use ":" instead of space as the parameter separator.
Browse files Browse the repository at this point in the history
This makes it consistent with all the other fs drivers.
  • Loading branch information
sirainen committed Jun 21, 2016
1 parent 9826e14 commit 06c1f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-fs/fs-posix.c
Expand Up @@ -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;

Expand Down

0 comments on commit 06c1f68

Please sign in to comment.