diff options
author | Daniel Stenberg <daniel@haxx.se> | 2022-10-30 17:38:16 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2022-10-30 22:31:29 +0100 |
commit | 52cc4a85fd7e5265ba8ff0f08adf4858f6773a11 (patch) | |
tree | 42840cae8269d796f753587dcd493d36f7384dab /lib/ftp.c | |
parent | b8c302dcbae53a79a85b42b9acfabd392a8a530e (diff) | |
download | curl-52cc4a85fd7e5265ba8ff0f08adf4858f6773a11.tar.gz |
style: use space after comment start and before comment end
/* like this */
/*not this*/
checksrc is updated accordingly
Closes #9828
Diffstat (limited to 'lib/ftp.c')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1164,7 +1164,7 @@ static CURLcode ftp_state_use_port(struct Curl_easy *data, port++; } - /* maybe all ports were in use already*/ + /* maybe all ports were in use already */ if(port > port_max) { failf(data, "bind() failed, we ran out of ports"); Curl_closesocket(data, conn, portsock); |