From d0b2695d773d3bbf162b367735c39d0e5bd7063a Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Tue, 8 Jun 2010 06:14:30 +0000 Subject: Fix compilation failure on Solaris in __socket_keepalive() Signed-off-by: Vijay Bellur Signed-off-by: Anand V. Avati BUG: 987 (Solaris compilation fails) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=987 --- xlators/protocol/transport/socket/src/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xlators') diff --git a/xlators/protocol/transport/socket/src/socket.c b/xlators/protocol/transport/socket/src/socket.c index c5c019c4860..fd3815d83fe 100644 --- a/xlators/protocol/transport/socket/src/socket.c +++ b/xlators/protocol/transport/socket/src/socket.c @@ -259,7 +259,7 @@ __socket_keepalive (int fd, int keepalive_intvl) if (keepalive_intvl == GF_USE_DEFAULT_KEEPALIVE) goto done; -#ifdef GF_DARWIN_HOST_OS +#ifndef GF_LINUX_HOST_OS ret = setsockopt (fd, IPPROTO_TCP, TCP_KEEPALIVE, &keepalive_intvl, sizeof (keepalive_intvl)); if (ret == -1) -- cgit