mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-31 12:09:35 -05:00
const strings
This commit is contained in:
parent
a20f8b5f97
commit
46273b9c4e
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue