projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
733a441
)
ftp.c: Fixed compilation warning
author
Steve Holme
<steve_holme@hotmail.com>
Tue, 24 Sep 2013 19:30:00 +0000
(20:30 +0100)
committer
Steve Holme
<steve_holme@hotmail.com>
Wed, 25 Sep 2013 06:09:41 +0000
(07:09 +0100)
There is an implicit conversion from "unsigned long" to "long"
lib/ftp.c
patch
|
blob
|
history
diff --git
a/lib/ftp.c
b/lib/ftp.c
index 106b97201716d83f94aa942b0eb383da77734163..e818af6c584494b307e1ebb146732393d10b5d4c 100644
(file)
--- a/
lib/ftp.c
+++ b/
lib/ftp.c
@@
-4250,7
+4250,7
@@
CURLcode ftp_parse_url_path(struct connectdata *conn)
dirlen++;
ftpc->dirs[0] = curl_easy_unescape(conn->data, slash_pos ? cur_pos : "/",
- slash_pos ? curlx_
s
ztosi(dirlen) : 1,
+ slash_pos ? curlx_
u
ztosi(dirlen) : 1,
NULL);
if(!ftpc->dirs[0]) {
freedirs(ftpc);