From: Harald Welte Date: Wed, 2 Oct 2002 13:52:17 +0000 (+0000) Subject: print space between '!' and mac address (Kristian Gronfeldt Sorensen) X-Git-Tag: v1.2.8-freeze~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a18c0006bff022e75facd34608a7a0c2f6bd5380;p=thirdparty%2Fiptables.git print space between '!' and mac address (Kristian Gronfeldt Sorensen) --- diff --git a/extensions/libipt_mac.c b/extensions/libipt_mac.c index 3710117d..b9d3b367 100644 --- a/extensions/libipt_mac.c +++ b/extensions/libipt_mac.c @@ -90,7 +90,7 @@ static void print_mac(unsigned char macaddress[ETH_ALEN], int invert) { unsigned int i; - printf("%s%02X", invert ? "!" : "", macaddress[0]); + printf("%s%02X", invert ? "! " : "", macaddress[0]); for (i = 1; i < ETH_ALEN; i++) printf(":%02X", macaddress[i]); printf(" ");