mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
Constify slapd_slp_attrs (assigned a const char* in main.c:slapd_opt_slp())
This commit is contained in:
parent
f9f0b243d6
commit
ce44bdbc37
2 changed files with 2 additions and 2 deletions
|
|
@ -339,7 +339,7 @@ static struct slap_daemon {
|
|||
static char** slapd_srvurls = NULL;
|
||||
static SLPHandle slapd_hslp = 0;
|
||||
int slapd_register_slp = 0;
|
||||
char *slapd_slp_attrs = NULL;
|
||||
const char *slapd_slp_attrs = NULL;
|
||||
|
||||
static SLPError slapd_slp_cookie;
|
||||
|
||||
|
|
|
|||
|
|
@ -727,7 +727,7 @@ LDAP_SLAPD_F (int) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
|
|||
LDAP_SLAPD_V (volatile sig_atomic_t) slapd_abrupt_shutdown;
|
||||
LDAP_SLAPD_V (volatile sig_atomic_t) slapd_shutdown;
|
||||
LDAP_SLAPD_V (int) slapd_register_slp;
|
||||
LDAP_SLAPD_V (char *) slapd_slp_attrs;
|
||||
LDAP_SLAPD_V (const char *) slapd_slp_attrs;
|
||||
LDAP_SLAPD_V (slap_ssf_t) local_ssf;
|
||||
LDAP_SLAPD_V (struct runqueue_s) slapd_rq;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue