mirror of
https://github.com/curl/curl.git
synced 2026-08-26 19:03:32 +03:00
NTLM single-sign on adjustments (IV)
Fix compiler warning
This commit is contained in:
parent
4eb08ac1c0
commit
dddf9aa610
2 changed files with 9 additions and 3 deletions
|
|
@ -834,7 +834,7 @@ static CURLcode sso_ntlm_response(struct connectdata *conn,
|
|||
size_t len_in = strlen(input), len_out = sizeof(buf);
|
||||
|
||||
while(len_in > 0) {
|
||||
int written = write(conn->fd_helper, input, len_in);
|
||||
ssize_t written = write(conn->fd_helper, input, len_in);
|
||||
if(written == -1) {
|
||||
/* Interrupted by a signal, retry it */
|
||||
if(errno == EINTR)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue