diff options
author | Björn Jacke <bj@sernet.de> | 2010-06-10 23:15:19 +0200 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2010-06-10 23:22:49 +0200 |
commit | a8c051b2f91852b5228d6a903d6a7fd50d22de28 (patch) | |
tree | 2235b45eb66115c7469c56ae50e9cbd03e984905 | |
parent | b53f8c187de8c8aff5989e4a0a460970f89b9011 (diff) | |
download | samba-a8c051b2f91852b5228d6a903d6a7fd50d22de28.tar.gz samba-a8c051b2f91852b5228d6a903d6a7fd50d22de28.tar.bz2 samba-a8c051b2f91852b5228d6a903d6a7fd50d22de28.zip |
s3: readd h_errno struct member but rename it
as pointed out by metze this is a structure of fixed size, which should not be
changed.
-rw-r--r-- | nsswitch/winbind_nss_hpux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nsswitch/winbind_nss_hpux.h b/nsswitch/winbind_nss_hpux.h index 393c0a35db..dba70a7657 100644 --- a/nsswitch/winbind_nss_hpux.h +++ b/nsswitch/winbind_nss_hpux.h @@ -133,9 +133,9 @@ typedef struct nss_XbyY_args { /* * 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 comment it out here: - * int h_errno; + * modules, so let's simply rename it: */ + int h_errno_unused; nss_status_t status; } nss_XbyY_args_t; |