From: Christian Brauner Date: Tue, 5 Apr 2016 14:05:29 +0000 (+0200) Subject: use correct "overlayfs" instead of "ovl" X-Git-Tag: lxc-2.0.0~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F944%2Fhead;p=thirdparty%2Flxc.git use correct "overlayfs" instead of "ovl" Signed-off-by: Christian Brauner --- diff --git a/src/lxc/bdev/bdev.c b/src/lxc/bdev/bdev.c index 1114a41a7..6b2911579 100644 --- a/src/lxc/bdev/bdev.c +++ b/src/lxc/bdev/bdev.c @@ -980,7 +980,7 @@ bool is_valid_bdev_type(const char *type) strcmp(type, "loop") == 0 || strcmp(type, "lvm") == 0 || strcmp(type, "nbd") == 0 || - strcmp(type, "ovl") == 0 || + strcmp(type, "overlayfs") == 0 || strcmp(type, "rbd") == 0 || strcmp(type, "zfs") == 0) return true;