From 4437568045175027a18abbd930b12b880b28a6a7 Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Tue, 8 Jun 2010 04:37:57 +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 --- transport/socket/src/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/socket/src/socket.c b/transport/socket/src/socket.c index d1c63353dcd..19a186768cd 100644 --- a/transport/socket/src/socket.c +++ b/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