diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2017-06-08 09:48:00 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-08 09:48:00 -0500 |
| commit | e676bf62a8b62baf0dfc3806acdb08be5935f6d7 (patch) | |
| tree | 7e1b4988cb4b30126e8a4258b023decc256e0879 /zebra/misc_null.c | |
| parent | 9d693a54fa47a3a46cb672a0a89dc28e10d9498f (diff) | |
| parent | 9c3bf1cee7123c400224da00f60cca1bece802bd (diff) | |
Merge pull request #696 from donaldsharp/disable_rtadv
zebra: Fix --disable-rtadv to actually compile
Diffstat (limited to 'zebra/misc_null.c')
| -rw-r--r-- | zebra/misc_null.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/misc_null.c b/zebra/misc_null.c index b125becdc9..f58eb628b0 100644 --- a/zebra/misc_null.c +++ b/zebra/misc_null.c @@ -25,7 +25,9 @@ #include "zebra/irdp.h" #include "zebra/interface.h" +#if defined (HAVE_RTADV) void rtadv_config_write (struct vty *vty, struct interface *ifp) { return; } +#endif void irdp_config_write (struct vty *vty, struct interface *ifp) { return; } #ifdef HAVE_PROC_NET_DEV void ifstat_update_proc (void) { return; } |
