mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-06 15:00:40 +08:00
Prototype vs. K&R mismatch
This commit is contained in:
parent
0c38adcfd8
commit
6df9dcc943
@ -309,9 +309,9 @@ void certif_init()
|
||||
{
|
||||
extern short ldap_certif_syntax;
|
||||
sntx_table *syntax_table;
|
||||
extern sntx_table *get_syntax_table();
|
||||
extern sntx_table *get_syntax_table( short int sntx );
|
||||
|
||||
if (syntax_table = get_syntax_table(ldap_certif_syntax)) {
|
||||
if ((syntax_table = get_syntax_table(ldap_certif_syntax)) != NULL) {
|
||||
syntax_table->s_print = (void *) ldap_certif_print;
|
||||
syntax_table->s_parse = (void *) ldap_str2cert;
|
||||
} else
|
||||
|
Loading…
x
Reference in New Issue
Block a user