From: Colin Ian King Date: Mon, 30 Jan 2023 09:23:57 +0000 (+0000) Subject: ksmbd: Fix spelling mistake "excceed" -> "exceeded" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7a17c61ee3b2683c40090179c273f4701fca9677;p=linux.git ksmbd: Fix spelling mistake "excceed" -> "exceeded" There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King Acked-by: Namjae Jeon Signed-off-by: Steve French --- diff --git a/fs/ksmbd/connection.c b/fs/ksmbd/connection.c index fc2479ec7b105..5b10b03800c16 100644 --- a/fs/ksmbd/connection.c +++ b/fs/ksmbd/connection.c @@ -312,7 +312,7 @@ int ksmbd_conn_handler_loop(void *p) max_allowed_pdu_size = SMB3_MAX_MSGSIZE; if (pdu_size > max_allowed_pdu_size) { - pr_err_ratelimited("PDU length(%u) excceed maximum allowed pdu size(%u) on connection(%d)\n", + pr_err_ratelimited("PDU length(%u) exceeded maximum allowed pdu size(%u) on connection(%d)\n", pdu_size, max_allowed_pdu_size, conn->status); break;