From 9064b2b5957d142c0185c070e0e3a64778136ead Mon Sep 17 00:00:00 2001 From: Michael Tuexen <tuexen@fh-muenster.de> Date: Mon, 24 Jul 2017 00:57:45 +0200 Subject: [PATCH] Fix NetBSD build issue. --- gtests/net/packetdrill/netdev.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gtests/net/packetdrill/netdev.c b/gtests/net/packetdrill/netdev.c index d895e5bb..a8cb5175 100644 --- a/gtests/net/packetdrill/netdev.c +++ b/gtests/net/packetdrill/netdev.c @@ -84,13 +84,19 @@ static void cleanup_old_device(struct config *config, { #if defined(__NetBSD__) char *cleanup_command = NULL; +#ifdef DEBUG int result; +#endif asprintf(&cleanup_command, "/sbin/ifconfig %s down delete > /dev/null 2>&1", TUN_DEV); DEBUGP("running: '%s'\n", cleanup_command); +#ifdef DEBUG result = system(cleanup_command); +#else + system(cleanup_command); +#endif DEBUGP("result: %d\n", result); free(cleanup_command); #endif /* defined(__NetBSD__) */ -- GitLab