diff options
author | Mark Whitley <markw@lineo.com> | 2001-02-15 23:31:40 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-02-15 23:31:40 +0000 |
commit | 825ae5a1665c174c9255ba3abe7ec9711d165c25 (patch) | |
tree | a4227a3204c9701385fe4156a54a703964567987 | |
parent | 99806ad2bdcbbe61198e36ff921973b56e9364a6 (diff) | |
download | busybox-w32-825ae5a1665c174c9255ba3abe7ec9711d165c25.tar.gz busybox-w32-825ae5a1665c174c9255ba3abe7ec9711d165c25.tar.bz2 busybox-w32-825ae5a1665c174c9255ba3abe7ec9711d165c25.zip |
Another small formatting change from Larry Doolittle.
-rw-r--r-- | networking/route.c | 10 | ||||
-rw-r--r-- | route.c | 10 |
2 files changed, 12 insertions, 8 deletions
diff --git a/networking/route.c b/networking/route.c index fe8fd915e..9bd4e91d2 100644 --- a/networking/route.c +++ b/networking/route.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * Foundation; either version 2 of the License, or (at | 15 | * Foundation; either version 2 of the License, or (at |
16 | * your option) any later version. | 16 | * your option) any later version. |
17 | * | 17 | * |
18 | * $Id: route.c,v 1.4 2001/02/15 23:00:48 markw Exp $ | 18 | * $Id: route.c,v 1.5 2001/02/15 23:31:40 markw Exp $ |
19 | * | 19 | * |
20 | * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru> | 20 | * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru> |
21 | * busybox style adjustments by Larry Doolittle <LRDoolittle@lbl.gov> | 21 | * busybox style adjustments by Larry Doolittle <LRDoolittle@lbl.gov> |
@@ -379,9 +379,11 @@ void displayroutes(void) | |||
379 | dest.s_addr = d; | 379 | dest.s_addr = d; |
380 | gw.s_addr = g; | 380 | gw.s_addr = g; |
381 | mask.s_addr = m; | 381 | mask.s_addr = m; |
382 | if(nl==1) | 382 | if(nl==1) { |
383 | printf("Kernel IP routing table\n\ | 383 | printf("Kernel IP routing table\n" |
384 | Destination\tGateway\t\tGenmask\t\tFlags Metric Ref Use Iface\n"); | 384 | "Destination Gateway Genmask Flags Metric Ref Use Iface\n"); |
385 | } | ||
386 | |||
385 | 387 | ||
386 | ifl = 0; /* parse flags */ | 388 | ifl = 0; /* parse flags */ |
387 | if(flgs&1) | 389 | if(flgs&1) |
@@ -15,7 +15,7 @@ | |||
15 | * Foundation; either version 2 of the License, or (at | 15 | * Foundation; either version 2 of the License, or (at |
16 | * your option) any later version. | 16 | * your option) any later version. |
17 | * | 17 | * |
18 | * $Id: route.c,v 1.4 2001/02/15 23:00:48 markw Exp $ | 18 | * $Id: route.c,v 1.5 2001/02/15 23:31:40 markw Exp $ |
19 | * | 19 | * |
20 | * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru> | 20 | * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru> |
21 | * busybox style adjustments by Larry Doolittle <LRDoolittle@lbl.gov> | 21 | * busybox style adjustments by Larry Doolittle <LRDoolittle@lbl.gov> |
@@ -379,9 +379,11 @@ void displayroutes(void) | |||
379 | dest.s_addr = d; | 379 | dest.s_addr = d; |
380 | gw.s_addr = g; | 380 | gw.s_addr = g; |
381 | mask.s_addr = m; | 381 | mask.s_addr = m; |
382 | if(nl==1) | 382 | if(nl==1) { |
383 | printf("Kernel IP routing table\n\ | 383 | printf("Kernel IP routing table\n" |
384 | Destination\tGateway\t\tGenmask\t\tFlags Metric Ref Use Iface\n"); | 384 | "Destination Gateway Genmask Flags Metric Ref Use Iface\n"); |
385 | } | ||
386 | |||
385 | 387 | ||
386 | ifl = 0; /* parse flags */ | 388 | ifl = 0; /* parse flags */ |
387 | if(flgs&1) | 389 | if(flgs&1) |