diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2018-10-01 14:55:06 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2018-10-01 18:18:42 +0200 | 
| commit | 6243a7b569519e6a07562a6e4d1d95b93834117c (patch) | |
| tree | 1b2f6ad08f6cd10c78b4791722bf6ef382949894 /ospfd/ospf_main.c | |
| parent | d6e762570619f84318ade5b44fdeb2f920637f1f (diff) | |
ospfd: fix symbol collision
debug_init() was recently added in libfrr, which is now causing a build
error with static linking.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'ospfd/ospf_main.c')
| -rw-r--r-- | ospfd/ospf_main.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_main.c b/ospfd/ospf_main.c index 9fb0e0ad13..20632f2840 100644 --- a/ospfd/ospf_main.c +++ b/ospfd/ospf_main.c @@ -187,7 +187,7 @@ int main(int argc, char **argv)  	master = om->master;  	/* Library inits. */ -	debug_init(); +	ospf_debug_init();  	ospf_vrf_init();  	access_list_init();  | 
