From 2ac0f8354585ac2cd617d53bfc9678769c8698fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Deschner?= Date: Wed, 24 Jan 2018 17:14:59 +0100 Subject: [PATCH] smb2_server: update inline comment for max channels All Windows versions have the limit of 32 channels. Signed-off-by: Guenther Deschner Signed-off-by: Stefan Metzmacher --- source3/smbd/smbXsrv_session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/smbXsrv_session.c b/source3/smbd/smbXsrv_session.c index ba542702213..7d63efb758f 100644 --- a/source3/smbd/smbXsrv_session.c +++ b/source3/smbd/smbXsrv_session.c @@ -1345,7 +1345,7 @@ NTSTATUS smbXsrv_session_add_channel(struct smbXsrv_session *session, if (global->num_channels > 31) { /* - * Windows 2012 and 2012R2 allow up to 32 channels + * Windows allow up to 32 channels */ return NT_STATUS_INSUFFICIENT_RESOURCES; }