autobuild: fixed clone source for build trees
[samba.git] / nsswitch / winbind_nss_hpux.h
index 40a352d4d3b796fb8cd22a5368058cfc694ee819..dba70a7657a5a6b60ca2df31b7773231137ea569 100644 (file)
@@ -130,7 +130,12 @@ typedef struct nss_XbyY_args {
 
        void *returnval;
        int erange;
-       int h_errno;
+       /*
+       *  h_errno is defined as function call macro for multithreaded applications
+       *  in HP-UX. *this* h_errno is not used in the HP-UX codepath of our nss
+       *  modules, so let's simply rename it:
+       */
+       int h_errno_unused;
        nss_status_t status;
 } nss_XbyY_args_t;