From: Volker Lendecke Date: Wed, 7 Sep 2022 09:32:26 +0000 (+0200) Subject: smbd: Fix a typo X-Git-Tag: talloc-2.4.0~932 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7359c527da297861ca24d59bd7e2a91b8d72e85;p=thirdparty%2Fsamba.git smbd: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 1358853941b..d98cec49e33 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -748,7 +748,7 @@ static int vfswrap_openat(vfs_handle_struct *handle, * conflicting flags are specified in how.flags. * * So we better clear ignored/invalid flags - * and only keep the exptected once. + * and only keep the expected ones. */ flags &= (O_PATH|O_CLOEXEC|O_DIRECTORY|O_NOFOLLOW); }