From: Günther Deschner Date: Wed, 24 Jan 2018 16:14:59 +0000 (+0100) Subject: smb2_server: update inline comment for max channels X-Git-Tag: ldb-2.2.0~479 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ac0f8354585ac2cd617d53bfc9678769c8698fc;p=thirdparty%2Fsamba.git 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 --- 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; }