const strings

This commit is contained in:
Howard Chu 2008-02-18 23:11:12 +00:00
parent a20f8b5f97
commit 46273b9c4e

View file

@ -22,14 +22,14 @@
LDAP_BEGIN_DECL
typedef struct ConfigTable {
char *name;
char *what;
const char *name;
const char *what;
int min_args;
int max_args;
int length;
unsigned int arg_type;
void *arg_item;
char *attribute;
const char *attribute;
AttributeDescription *ad;
void *notify;
} ConfigTable;
@ -99,7 +99,7 @@ typedef int (ConfigCfAdd)(
Operation *op, SlapReply *rs, Entry *parent, struct config_args_s *ca );
typedef struct ConfigOCs {
char *co_def;
const char *co_def;
ConfigType co_type;
ConfigTable *co_table;
ConfigLDAPadd *co_ldadd;