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_dump.h | |
| 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_dump.h')
| -rw-r--r-- | ospfd/ospf_dump.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_dump.h b/ospfd/ospf_dump.h index 99d7512f16..397f666f69 100644 --- a/ospfd/ospf_dump.h +++ b/ospfd/ospf_dump.h @@ -140,7 +140,7 @@ extern const char *ospf_timer_dump(struct thread *, char *, size_t);  extern const char *ospf_timeval_dump(struct timeval *, char *, size_t);  extern void ospf_ip_header_dump(struct ip *);  extern void ospf_packet_dump(struct stream *); -extern void debug_init(void); +extern void ospf_debug_init(void);  /* Appropriate buffer size to use with ospf_timer_dump and ospf_timeval_dump: */  #define OSPF_TIME_DUMP_SIZE	16  | 
