diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-01 04:56:16 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-01 04:56:16 +0000 |
commit | 7635577ad7321d59eb4bb17b5e4d80dbca459bfc (patch) | |
tree | 98162403af04c0ea6638b18e63f158b92ab8bd01 /lib/smb.c | |
parent | 0df2ed85fd3de5e047166a6142e7bd4a8705d641 (diff) | |
download | curl-7635577ad7321d59eb4bb17b5e4d80dbca459bfc.tar.gz |
smb.c: Fixed compilation warnings
smb.c:780: warning: passing 'char *' to parameter of type 'unsigned
char *' converts between pointers to integer types with
different sign
smb.c:781: warning: passing 'char *' to parameter of type 'unsigned
char *' converts between pointers to integer types with
different sign
smb.c:804: warning: passing 'char *' to parameter of type 'unsigned
char *' converts between pointers to integer types with
different sign
Diffstat (limited to 'lib/smb.c')
-rw-r--r-- | lib/smb.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -6,6 +6,7 @@ * \___|\___/|_| \_\_____| * * Copyright (C) 2014, Bill Nagel <wnagel@tycoint.com>, Exacq Technologies + * Copyright (C) 2015, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -777,8 +778,10 @@ static CURLcode smb_request_state(struct connectdata *conn, bool *done) next_state = SMB_CLOSE; break; } - len = Curl_read16_le(((char *) msg) + sizeof(struct smb_header) + 11); - off = Curl_read16_le(((char *) msg) + sizeof(struct smb_header) + 13); + len = Curl_read16_le(((unsigned char *) msg) + + sizeof(struct smb_header) + 11); + off = Curl_read16_le(((unsigned char *) msg) + + sizeof(struct smb_header) + 13); if(len > 0) { result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)msg + off + sizeof(unsigned int), @@ -801,7 +804,8 @@ static CURLcode smb_request_state(struct connectdata *conn, bool *done) next_state = SMB_CLOSE; break; } - len = Curl_read16_le(((char *) msg) + sizeof(struct smb_header) + 5); + len = Curl_read16_le(((unsigned char *) msg) + + sizeof(struct smb_header) + 5); conn->data->req.bytecount += len; conn->data->req.offset += len; Curl_pgrsSetUploadCounter(conn->data, conn->data->req.bytecount); |