aboutsummaryrefslogtreecommitdiffstats
path: root/src/starter/cmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/starter/cmp.c')
-rw-r--r--src/starter/cmp.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/starter/cmp.c b/src/starter/cmp.c
index 0727cf5f0..0072e3ed7 100644
--- a/src/starter/cmp.c
+++ b/src/starter/cmp.c
@@ -21,7 +21,6 @@
#include "confread.h"
#include "args.h"
-#include "interfaces.h"
#include "cmp.h"
#define VARCMP(obj) if (c1->obj != c2->obj) return FALSE
@@ -105,11 +104,3 @@ starter_cmp_pluto(starter_config_t *c1, starter_config_t *c2)
return cmp_args(KW_PLUTO_FIRST, KW_PLUTO_LAST, (char *)c1, (char *)c2);
}
-
-bool
-starter_cmp_defaultroute(defaultroute_t *d1, defaultroute_t *d2)
-{
- if ((d1 == NULL) || (d2 == NULL))
- return FALSE;
- return memcmp(d1, d2, sizeof(defaultroute_t)) == 0;
-}