Skip to content

Commit

Permalink
- Fix php#16348.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfn committed Mar 30, 2002
1 parent ae33617 commit e4d2fa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/ftp/php_ftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ PHP_FUNCTION(ftp_connect)
}

/* connect */
ftp = ftp_open(host, htons((short)port), timeout_sec);
ftp = ftp_open(host, (short)port, timeout_sec);
if (ftp == NULL) {
RETURN_FALSE;
}
Expand Down

0 comments on commit e4d2fa8

Please sign in to comment.