mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 18:49:34 -05:00
Prototype vs. K&R mismatch
This commit is contained in:
parent
0c38adcfd8
commit
6df9dcc943
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Reference in a new issue