From 48e67e4bb7c0bd42753027ebbab785507d7f254d Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Wed, 30 Sep 2020 16:38:52 +0200 Subject: [PATCH] Cannot typo fix --- lib/bindmount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bindmount.c b/lib/bindmount.c index 3b2c3d37..ba894bbd 100644 --- a/lib/bindmount.c +++ b/lib/bindmount.c @@ -335,7 +335,7 @@ static int get_mount_flags(const char *dir, int *flags) struct stat st; if (stat(dir, &st)) - return vzctl_err(-1, errno, "Cannpt stat %s", dir); + return vzctl_err(-1, errno, "Cannot stat %s", dir); fp = fopen("/proc/mounts", "r"); if (fp == NULL)