Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 590d08d3 authored by Steve French's avatar Steve French
Browse files

SMB3: Fix endian warning



Multi-dialect negotiate patch had a minor endian error.

Signed-off-by: default avatarSteve French <smfrench@gmail.com>
Reviewed-by: default avatarRonnie Sahlberg <lsahlber@redhat.com>
CC: Stable <stable@vger.kernel.org> # 4.13+
parent 23586b66
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -570,10 +570,11 @@ SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
			/* ops set to 3.0 by default for default so update */
			ses->server->ops = &smb21_operations;
		}
	} else if (rsp->DialectRevision != ses->server->vals->protocol_id) {
	} else if (le16_to_cpu(rsp->DialectRevision) !=
				ses->server->vals->protocol_id) {
		/* if requested single dialect ensure returned dialect matched */
		cifs_dbg(VFS, "Illegal 0x%x dialect returned: not requested\n",
			cpu_to_le16(rsp->DialectRevision));
			le16_to_cpu(rsp->DialectRevision));
		return -EIO;
	}