From: Harald Welte Date: Mon, 6 Jan 2003 13:04:53 +0000 (+0000) Subject: fix save() function when used with ! X-Git-Tag: v1.2.8-freeze~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fcb1646bf7c511d300b4c3ce916c3d835b9d63b0;p=thirdparty%2Fiptables.git fix save() function when used with ! --- diff --git a/extensions/libip6t_mac.c b/extensions/libip6t_mac.c index aac3980f..fe0d3a45 100644 --- a/extensions/libip6t_mac.c +++ b/extensions/libip6t_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(" ");