From: Karel Zak Date: Tue, 10 Jan 2023 10:27:40 +0000 (+0100) Subject: libmount: fix typo in debug message X-Git-Tag: v2.39-rc1~173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e435d78753df3fdee3cb2a20215a80d88fc3a0c5;p=thirdparty%2Futil-linux.git libmount: fix typo in debug message Signed-off-by: Karel Zak --- diff --git a/libmount/src/context.c b/libmount/src/context.c index b1b08ae63a..972853b3fe 100644 --- a/libmount/src/context.c +++ b/libmount/src/context.c @@ -1918,7 +1918,7 @@ int mnt_context_guess_srcpath_fstype(struct libmnt_context *cxt, char **type) if (opt && (allowed = mnt_opt_get_value(opt)) && !match_fstype(*type, allowed)) { - DBG(CXT, ul_debugobj(cxt, "%s is not allowd by auto-fstypes=%s", + DBG(CXT, ul_debugobj(cxt, "%s is not allowed by auto-fstypes=%s", *type, allowed)); free(*type); *type = NULL;