summaryrefslogtreecommitdiff
path: root/networking/libiproute/ipaddress.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/libiproute/ipaddress.c')
-rw-r--r--networking/libiproute/ipaddress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c
index fc10ba37c..955a9d933 100644
--- a/networking/libiproute/ipaddress.c
+++ b/networking/libiproute/ipaddress.c
@@ -46,7 +46,7 @@ static void print_link_flags(FILE *fp, unsigned flags, unsigned mdown)
46 fprintf(fp, "<"); 46 fprintf(fp, "<");
47 flags &= ~IFF_RUNNING; 47 flags &= ~IFF_RUNNING;
48#define _PF(f) if (flags&IFF_##f) { \ 48#define _PF(f) if (flags&IFF_##f) { \
49 flags &= ~IFF_##f ; \ 49 flags &= ~IFF_##f; \
50 fprintf(fp, #f "%s", flags ? "," : ""); } 50 fprintf(fp, #f "%s", flags ? "," : ""); }
51 _PF(LOOPBACK); 51 _PF(LOOPBACK);
52 _PF(BROADCAST); 52 _PF(BROADCAST);