patch-sysdeputil_c 390 B

12345678910111213
  1. --- vsftpd-3.0.2.orig/sysdeputil.c 2012-09-16 06:18:04.000000000 +0200
  2. +++ vsftpd-3.0.2/sysdeputil.c 2014-02-11 14:21:18.000000000 +0100
  3. @@ -81,6 +81,10 @@
  4. #include <linux/unistd.h>
  5. #include <errno.h>
  6. #include <syscall.h>
  7. +/* for musl */
  8. +#if !defined(__GLIBC__)
  9. +#define WTMPX_FILE "/dev/null"
  10. +#endif
  11. #endif
  12. #if defined(__linux__) && !defined(__ia64__) && !defined(__s390__)