Commit 1a70d652 authored by Steve French's avatar Steve French

[CIFS] Fix compiler warning with previous patch

Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 947a5067
...@@ -477,7 +477,7 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses) ...@@ -477,7 +477,7 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses)
server->capabilities = CAP_MPX_MODE; server->capabilities = CAP_MPX_MODE;
} }
tmp = (__s16)le16_to_cpu(rsp->ServerTimeZone); tmp = (__s16)le16_to_cpu(rsp->ServerTimeZone);
if (tmp == 0xffff) { if (tmp == -1) {
/* OS/2 often does not set timezone therefore /* OS/2 often does not set timezone therefore
* we must use server time to calc time zone. * we must use server time to calc time zone.
* Could deviate slightly from the right zone. * Could deviate slightly from the right zone.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment