login
Header Space

 
 

[PATCH 3/4] Use __linux__ conditional, not LINUX.

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Yann Dirson <ydirson@...>, <git@...>, <cvsps@...>
Date: Tuesday, June 13, 2006 - 12:32 am

From: Pavel Roskin <proski@gnu.org>

__linux__ is defined automatically, LINUX is not.

Signed-off-by: Pavel Roskin <proski@gnu.org>
---

 cbtcommon/tcpsocket.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cbtcommon/tcpsocket.c b/cbtcommon/tcpsocket.c
index 27cc13a..a174007 100644
--- a/cbtcommon/tcpsocket.c
+++ b/cbtcommon/tcpsocket.c
@@ -185,14 +185,14 @@ #endif
 int
 convert_address(long *dest, const char *addr_str)
 {
-#ifdef LINUX
+#ifdef __linux__
   struct in_addr ip;
 #endif
   int retval = 0;
   char errstr[256];
   
   /* first try converting "numbers and dots" notation */
-#ifdef LINUX
+#ifdef __linux__
   if ( inet_aton(addr_str, &ip) )
   {
     memcpy(dest, &ip.s_addr, sizeof(ip.s_addr));

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/4] Remove dependencies with absolute path, Pavel Roskin, (Tue Jun 13, 12:32 am)
[PATCH 3/4] Use __linux__ conditional, not LINUX., Pavel Roskin, (Tue Jun 13, 12:32 am)
[PATCH 2/4] Trivial compile fix for cache.c, Pavel Roskin, (Tue Jun 13, 12:32 am)
speck-geostationary