patch-src_getrpcent_c 733 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --- libtirpc-0.2.4.orig/src/getrpcent.c 2013-12-09 21:59:51.000000000 +0100
  2. +++ libtirpc-0.2.4/src/getrpcent.c 2014-05-18 08:04:03.462885748 +0200
  3. @@ -50,6 +50,10 @@
  4. #include <libc_private.h>
  5. #endif
  6. +#if HAVE_CONFIG_H
  7. +#include "config.h"
  8. +#endif
  9. +
  10. /*
  11. * Internet version.
  12. */
  13. @@ -89,7 +93,7 @@ _rpcdata()
  14. return (d);
  15. }
  16. -#ifdef GQ
  17. +#if !HAVE_GETRPCBYNYMBER
  18. struct rpcent *
  19. getrpcbynumber(number)
  20. int number;
  21. @@ -135,7 +139,9 @@ no_yp:
  22. endrpcent();
  23. return (p);
  24. }
  25. +#endif /* !HAVE_GETRPCBYNUMBER */
  26. +#if !HAVE_GETRPCBYNAME
  27. struct rpcent *
  28. getrpcbyname(name)
  29. const char *name;
  30. @@ -158,7 +164,7 @@ done:
  31. endrpcent();
  32. return (rpc);
  33. }
  34. -#endif /* GQ */
  35. +#endif /* !HAVE_GETRPCBYNAME */
  36. void
  37. setrpcent(f)