diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-09 23:52:18 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-09 23:52:18 +0000 |
commit | b6b519b416189202d18d888d61d8bbe50dc30325 (patch) | |
tree | e04e4a2329b9cf5c96b31fa064e6c85dfb8b9055 /interface.c | |
parent | d3f97f19718fa5890cb6cb3fd010f7b4a7bd3ae1 (diff) | |
download | busybox-b6b519b416189202d18d888d61d8bbe50dc30325.tar.gz |
Update how we detect if libc5 is in use.
-Erik
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.c b/interface.c index a80cd5524..a043d7223 100644 --- a/interface.c +++ b/interface.c @@ -3,7 +3,7 @@ * that either displays or sets the characteristics of * one or more of the system's networking interfaces. * - * Version: $Id: interface.c,v 1.5 2001/03/15 15:37:48 mjn3 Exp $ + * Version: $Id: interface.c,v 1.6 2001/04/09 23:52:18 andersen Exp $ * * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> * and others. Copyright 1993 MicroWalt Corporation @@ -115,7 +115,7 @@ struct in6_ifreq { #endif /* HAVE_AFINET6 */ #if HAVE_AFIPX -#if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) +#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1) #include <netipx/ipx.h> #else #include "ipx.h" |