f987edfef0
* reduced unixODBC, after the GUI and additional driver parts have been split off to their own project. * change to the new default SQLLEN size for 64 bit platforms * number of bug fixes and changes, see http://www.unixodbc.org/ OBS-URL: https://build.opensuse.org/package/show/server:database/unixODBC?expand=0&rev=13
25 lines
773 B
Diff
25 lines
773 B
Diff
Index: Drivers/Postgre7.1/socket.c
|
|
===================================================================
|
|
--- Drivers/Postgre7.1/socket.c.orig
|
|
+++ Drivers/Postgre7.1/socket.c
|
|
@@ -100,7 +100,7 @@ SOCK_connect_to_ip(SocketClass *self, un
|
|
{
|
|
struct hostent *host;
|
|
struct sockaddr_in sadr;
|
|
-unsigned long iaddr;
|
|
+struct in_addr iaddr;
|
|
|
|
if (self->socket != -1) {
|
|
self->errornumber = SOCKET_ALREADY_CONNECTED;
|
|
@@ -113,8 +113,8 @@ unsigned long iaddr;
|
|
/* If it is a valid IP address, use it.
|
|
Otherwise use hostname lookup.
|
|
*/
|
|
- iaddr = inet_addr(hostname);
|
|
- if (iaddr == INADDR_NONE) {
|
|
+ iaddr.s_addr = inet_addr(hostname);
|
|
+ if (iaddr.s_addr == INADDR_NONE) {
|
|
host = gethostbyname(hostname);
|
|
if (host == NULL) {
|
|
self->errornumber = SOCKET_HOST_NOT_FOUND;
|