diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-03-13 09:16:16 +0000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2024-03-14 18:51:32 -0500 |
commit | e758fa6956cbc873e4819ec3dd97cfd05a4c147e (patch) | |
tree | 9105f60184f457387198372d567d484c01b5fdcd /fs | |
parent | 5fb282ba4fef8985a5acf2b32681f2ec07732561 (diff) |
ksmbd: Fix spelling mistake "connction" -> "connection"
There is a spelling mistake in a ksmbd_debug debug message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/smb/server/oplock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/server/oplock.c b/fs/smb/server/oplock.c index b30ff8b9777d..4978edfb15f9 100644 --- a/fs/smb/server/oplock.c +++ b/fs/smb/server/oplock.c @@ -1843,7 +1843,7 @@ int smb2_check_durable_oplock(struct ksmbd_conn *conn, if (memcmp(conn->ClientGUID, fp->client_guid, SMB2_CLIENT_GUID_SIZE)) { - ksmbd_debug(SMB, "Client guid of fp is not equal to the one of connction\n"); + ksmbd_debug(SMB, "Client guid of fp is not equal to the one of connection\n"); ret = -EBADF; goto out; } |