l2tp-legacy.patch 583 B

1234567891011121314
  1. --- l2tpd-0.70-pre20031121.oorig/osport.h 2004-07-08 22:47:52.000000000 +0200
  2. +++ l2tpd-0.70-pre20031121/osport.h 2006-12-28 15:32:50.000000000 +0100
  3. @@ -37,4 +37,11 @@
  4. #endif /* defined(SOLARIS) */
  5. +#if defined __UCLIBC__ && !defined UCLIBC_SUSV3_LEGACY_MACROS
  6. +# define index(x, y) strchr(x, y)
  7. +# define bcopy(S1, S2, LEN) ((void)memmove(S2, S1, LEN))
  8. +# define bzero(S1, LEN) ((void)memset(S1, 0, LEN))
  9. +# define bcmp(S1,S2,LEN) ((memcmp(S2, S1, LEN)==0)?0:1)
  10. +#endif /* defined __UCLIBC__ && !defined UCLIBC_SUSV3_LEGACY_MACROS */
  11. +
  12. #endif /* _OSPORT_H_ */