Skip to content
Snippets Groups Projects
Commit beb731d5 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5615

parent 67f9eaae
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ OpenLDAP 2.4.11 Release (2008/07/13) ...@@ -5,6 +5,7 @@ OpenLDAP 2.4.11 Release (2008/07/13)
Added libldap assertion control (ITS#5560) Added libldap assertion control (ITS#5560)
Fixed libldap GnuTLS CRL result handling (ITS#5577) Fixed libldap GnuTLS CRL result handling (ITS#5577)
Fixed libldap GnuTLS SSF computation (ITS#5585) Fixed libldap GnuTLS SSF computation (ITS#5585)
Fixed liblutil missing return code (ITS#5615)
Fixed slapd cert serial number parsing (ITS#5588) Fixed slapd cert serial number parsing (ITS#5588)
Fixed slapd check for structural_class failures (ITS#5540) Fixed slapd check for structural_class failures (ITS#5540)
Fixed slapd config backend renumbering (ITS#5571) Fixed slapd config backend renumbering (ITS#5571)
......
...@@ -58,6 +58,7 @@ int lutil_getpeereid( int s, uid_t *euid, gid_t *egid ...@@ -58,6 +58,7 @@ int lutil_getpeereid( int s, uid_t *euid, gid_t *egid
*euid = ucred_geteuid( uc ); *euid = ucred_geteuid( uc );
*egid = ucred_getegid( uc ); *egid = ucred_getegid( uc );
ucred_free( uc ); ucred_free( uc );
return 0;
} }
#elif defined( SO_PEERCRED ) #elif defined( SO_PEERCRED )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment