8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 21:23:03 +01:00

Fixed compiler error.

This commit is contained in:
eku 2003-11-18 12:37:50 +00:00
parent abe72ccf71
commit 78e914faad

View File

@ -619,7 +619,7 @@ static SLONG open_connection(SCHAR * filename,
if (find_address(name, &address, test_only) < 0)
return -1;
const sockaddr* address2 = (sockaddr*) &address;
sockaddr* address2 = (sockaddr*) &address;
if (connect(channel, address2, sizeof(address2)) < 0) {
if (test_only)