Skip to content

Commit

Permalink
fix ifdef to apply only on uclibc and old glibc
Browse files Browse the repository at this point in the history
  • Loading branch information
David Heidelberger committed Apr 18, 2014
1 parent 859cf93 commit c9ecbd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static void init(void);

#define MAXIFS 32

#if !defined(__GLIBC__) || __GLIBC__ < 2
#if defined(__UCLIBC__) || (defined(__GLIBC__) && __GLIBC__ < 2)
/* For router advertisement */
struct icmp_ra
{
Expand Down

0 comments on commit c9ecbd7

Please sign in to comment.