mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 19:19:35 -05:00
cleanup previous commit (still temporary, need to define dedicated attributeTypes)
This commit is contained in:
parent
1e577505eb
commit
5769f419db
1 changed files with 8 additions and 4 deletions
|
|
@ -46,6 +46,14 @@ static int monitor_back_add_plugin( Backend *be, Entry *e );
|
|||
#include "../back-ldbm/back-ldbm.h"
|
||||
#endif /* defined(SLAPD_LDBM) */
|
||||
|
||||
/* 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 struct restricted_ops_t {
|
||||
struct berval op;
|
||||
unsigned int tag;
|
||||
|
|
@ -274,10 +282,6 @@ monitor_subsys_database_init(
|
|||
{
|
||||
struct berval bv;
|
||||
ber_len_t pathlen = 0, len = 0;
|
||||
/* FIXME: need a cleaner solution */
|
||||
#ifndef PATH_MAX
|
||||
#define PATH_MAX 4095
|
||||
#endif /* ! PATH_MAX */
|
||||
char path[ PATH_MAX ] = { '\0' };
|
||||
char *fname = NULL;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue