From a2fd65a1e9a711fae0734bdb539aae617115bd30 Mon Sep 17 00:00:00 2001
From: gcontini <1121667+gcontini@users.noreply.github.com>
Date: 周三, 14 10月 2020 22:31:25 +0800
Subject: [PATCH] add debug

---
 src/library/os/linux/network.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/library/os/linux/network.cpp b/src/library/os/linux/network.cpp
index 5873a2b..1281aca 100644
--- a/src/library/os/linux/network.cpp
+++ b/src/library/os/linux/network.cpp
@@ -76,7 +76,7 @@
 		family = ifa->ifa_addr->sa_family;
 		/* Display interface name and family (including symbolic
 		 form of the latter for the common families) */
-#ifdef _DEBUG
+#ifndef NDEBUG
 		printf("%-8s %s (%d)\n", ifa->ifa_name,
 			   (family == AF_PACKET) ? "AF_PACKET"
 									 : (family == AF_INET) ? "AF_INET" : (family == AF_INET6) ? "AF_INET6" : "???",
@@ -97,11 +97,11 @@
 			int i;
 			for (i = 0; i < 6; i++) {
 				currentAdapter->mac_address[i] = s1->sll_addr[i];
-#ifdef _DEBUG
+#ifndef NDEBUG
 				printf("%02x:", s1->sll_addr[i]);
 #endif
 			}
-#ifdef _DEBUG
+#ifndef NDEBUG
 			printf("\t %s\n", ifa->ifa_name);
 #endif
 		}

--
Gitblit v1.9.1