patch-cifs_upcall_c 444 B

12345678910111213141516
  1. --- cifs-utils-6.1.orig/cifs.upcall.c 2013-07-02 21:13:33.000000000 +0200
  2. +++ cifs-utils-6.1/cifs.upcall.c 2013-10-28 07:33:27.000000000 +0100
  3. @@ -30,7 +30,13 @@
  4. #endif /* HAVE_CONFIG_H */
  5. #include <string.h>
  6. +#ifdef HAVE_GNU_GETOPT_LONG
  7. #include <getopt.h>
  8. +#else
  9. +#include "gnu_getopt.h"
  10. +#define getopt_long gnu_getopt_long
  11. +#define option gnu_option
  12. +#endif
  13. #ifdef HAVE_KRB5_KRB5_H
  14. #include <krb5/krb5.h>
  15. #elif defined(HAVE_KRB5_H)