diff mbox series

[next] ksmbd: Fix spelling mistake "connction" -> "connection"

Message ID 20240313091616.2266107-1-colin.i.king@gmail.com
State New
Headers show
Series [next] ksmbd: Fix spelling mistake "connction" -> "connection" | expand

Commit Message

Colin Ian King March 13, 2024, 9:16 a.m. UTC
There is a spelling mistake in a ksmbd_debug debug message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/smb/server/oplock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Namjae Jeon March 14, 2024, 2:44 a.m. UTC | #1
2024년 3월 13일 (수) 오후 6:16, Colin Ian King <colin.i.king@gmail.com>님이 작성:
>
> There is a spelling mistake in a ksmbd_debug debug message. Fix it.
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Applied it to #ksmbd-for-next-next.
Thanks for your patch!
diff mbox series

Patch

diff --git a/fs/smb/server/oplock.c b/fs/smb/server/oplock.c
index 9af5fd68bd85..80971e60ca10 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;
 	}