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

ITS#6351

parent 0e474b57
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,7 @@ OpenLDAP 2.4.20 Engineering ...@@ -27,6 +27,7 @@ OpenLDAP 2.4.20 Engineering
Fixed slapo-syncprov deadlock (ITS#6335) Fixed slapo-syncprov deadlock (ITS#6335)
Fixed slapo-syncprov out of order changes (ITS#6346) Fixed slapo-syncprov out of order changes (ITS#6346)
Build Environment Build Environment
Fixed memrchr define (ITS#6351)
Fixed slapd MAXPATHLEN handling (ITS#6342) Fixed slapd MAXPATHLEN handling (ITS#6342)
Fixed test057 handling of memberof/refint (ITS#6343) Fixed test057 handling of memberof/refint (ITS#6343)
Fixed slapd test error ignoring (ITS#6345) Fixed slapd test error ignoring (ITS#6345)
......
...@@ -98,8 +98,8 @@ int (strncasecmp)(); ...@@ -98,8 +98,8 @@ int (strncasecmp)();
#ifndef HAVE_MEMRCHR #ifndef HAVE_MEMRCHR
#undef memrchr #undef memrchr
#define memrchr lutil_memrchr #define memrchr lutil_memrchr
#endif /* ! HAVE_MEMRCHR */
void * memrchr(const void *b, int c, size_t len); void * memrchr(const void *b, int c, size_t len);
#endif /* ! HAVE_MEMRCHR */
#define STRLENOF(s) (sizeof(s)-1) #define STRLENOF(s) (sizeof(s)-1)
......
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