s/PATH_MAX/MAXPATHLEN/ (ITS#5531)

This commit is contained in:
Pierangelo Masarati 2008-05-26 20:56:42 +00:00
parent 78b2f4174a
commit a9bb2de745
2 changed files with 2 additions and 9 deletions

View file

@ -8,6 +8,7 @@ OpenLDAP 2.3.42 Release (2008/05/15)
Fixed slapd delta-syncrepl refresh mode (ITS#5376)
Fixed slapd delta-syncrepl resync (ITS#5378)
Fixed slapd pagedresults stale state (ITS#5409)
Fixed slapd-monitor MAXPATHLEN (ITS#5531)
Fixed slapd-ldap connection handler (ITS#5404)
Fixed slapd-ldap entry_get() op-dependent behavior (ITS#5513)
Fixed slapd-meta quarantine crasher (ITS#5522)

View file

@ -49,14 +49,6 @@ static int monitor_back_add_plugin( monitor_info_t *mi, Backend *be, Entry *e );
#include "../back-meta/back-meta.h"
#endif /* defined(SLAPD_META) */
/* for PATH_MAX on some systems (e.g. Solaris) */
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif /* HAVE_LIMITS_H */
#ifndef PATH_MAX
#define PATH_MAX 4095
#endif /* ! PATH_MAX */
static int
monitor_subsys_database_modify(
Operation *op,
@ -313,7 +305,7 @@ monitor_subsys_database_init(
{
struct berval bv;
ber_len_t pathlen = 0, len = 0;
char path[ PATH_MAX ] = { '\0' };
char path[ MAXPATHLEN ] = { '\0' };
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
char *fname = bdb->bi_dbenv_home;