diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
commit | c6f188def8c5496dbd65c9be6ca3050286db7227 (patch) | |
tree | d8e1e56c728628c15f66cb88a6e54f368c806939 /networking/interface.c | |
parent | e63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff) | |
download | busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.bz2 busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.zip |
silly size savings and capitalization fixes
Diffstat (limited to 'networking/interface.c')
-rw-r--r-- | networking/interface.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/interface.c b/networking/interface.c index 4594293e4..6c8e93879 100644 --- a/networking/interface.c +++ b/networking/interface.c | |||
@@ -938,7 +938,7 @@ static void ife_print(struct interface *ptr) | |||
938 | printf("(auto)"); | 938 | printf("(auto)"); |
939 | } | 939 | } |
940 | #endif | 940 | #endif |
941 | printf("\n"); | 941 | puts(""); |
942 | 942 | ||
943 | if (ptr->has_ip) { | 943 | if (ptr->has_ip) { |
944 | printf(" %s addr:%s ", ap->name, | 944 | printf(" %s addr:%s ", ap->name, |
@@ -1007,7 +1007,7 @@ static void ife_print(struct interface *ptr) | |||
1007 | default: | 1007 | default: |
1008 | printf("Unknown"); | 1008 | printf("Unknown"); |
1009 | } | 1009 | } |
1010 | printf("\n"); | 1010 | puts(""); |
1011 | } | 1011 | } |
1012 | } | 1012 | } |
1013 | fclose(f); | 1013 | fclose(f); |
@@ -1034,7 +1034,7 @@ static void ife_print(struct interface *ptr) | |||
1034 | if (ptr->outfill || ptr->keepalive) | 1034 | if (ptr->outfill || ptr->keepalive) |
1035 | printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive); | 1035 | printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive); |
1036 | #endif | 1036 | #endif |
1037 | printf("\n"); | 1037 | puts(""); |
1038 | 1038 | ||
1039 | /* If needed, display the interface statistics. */ | 1039 | /* If needed, display the interface statistics. */ |
1040 | 1040 | ||
@@ -1083,9 +1083,9 @@ static void ife_print(struct interface *ptr) | |||
1083 | } | 1083 | } |
1084 | if (ptr->map.dma) | 1084 | if (ptr->map.dma) |
1085 | printf("DMA chan:%x ", ptr->map.dma); | 1085 | printf("DMA chan:%x ", ptr->map.dma); |
1086 | printf("\n"); | 1086 | puts(""); |
1087 | } | 1087 | } |
1088 | printf("\n"); | 1088 | puts(""); |
1089 | } | 1089 | } |
1090 | 1090 | ||
1091 | 1091 | ||