Skip to content
Snippets Groups Projects
Commit 6df9dcc9 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Prototype vs. K&R mismatch

parent 0c38adcf
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment