diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-08-18 16:58:35 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2016-09-01 11:11:59 +0200 |
commit | fd36570a8805f39b40a0ebde19b08603aa201d17 (patch) | |
tree | befc2be5d6ebf15f3e3375bbac9956c2692a2298 /fs | |
parent | 2a3a2a3f35249412e35fbb48b743348c40373409 (diff) | |
download | linux-fd36570a8805f39b40a0ebde19b08603aa201d17.tar.gz linux-fd36570a8805f39b40a0ebde19b08603aa201d17.tar.xz |
ovl: fix spelling mistake: "directries" -> "directories"
Trivial fix to spelling mistake in pr_err message.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/overlayfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/overlayfs/super.c b/fs/overlayfs/super.c index 219534e5ca0b..6aad7d4e2601 100644 --- a/fs/overlayfs/super.c +++ b/fs/overlayfs/super.c @@ -1151,7 +1151,7 @@ static int ovl_fill_super(struct super_block *sb, void *data, int silent) err = -EINVAL; stacklen = ovl_split_lowerdirs(lowertmp); if (stacklen > OVL_MAX_STACK) { - pr_err("overlayfs: too many lower directries, limit is %d\n", + pr_err("overlayfs: too many lower directories, limit is %d\n", OVL_MAX_STACK); goto out_free_lowertmp; } else if (!ufs->config.upperdir && stacklen == 1) { |