aboutsummaryrefslogtreecommitdiff
path: root/networking/traceroute.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-29 10:16:05 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-29 10:16:05 +0000
commitdadfb4975b23b284fa02d15a5cfd21593b2993fc (patch)
tree993a6e7a9efd1d2a06408d9cd069cb4eeb09e883 /networking/traceroute.c
parente1ee48e0fdfe18aadb410b62f21516bf4b8ea581 (diff)
downloadbusybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.gz
busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.tar.bz2
busybox-w32-dadfb4975b23b284fa02d15a5cfd21593b2993fc.zip
hush: add #defines to switch off break/continue if loops are not supported
*: remove a few inline keywords no code changes
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r--networking/traceroute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c
index 4e6ca2d9b..29cebfa61 100644
--- a/networking/traceroute.c
+++ b/networking/traceroute.c
@@ -819,7 +819,7 @@ packet_ok(unsigned char *buf, int cc, struct sockaddr_in *from, int seq)
819 * If the nflag has been supplied, give 819 * If the nflag has been supplied, give
820 * numeric value, otherwise try for symbolic name. 820 * numeric value, otherwise try for symbolic name.
821 */ 821 */
822static inline void 822static void
823print_inetname(struct sockaddr_in *from) 823print_inetname(struct sockaddr_in *from)
824{ 824{
825 const char *ina; 825 const char *ina;
@@ -836,7 +836,7 @@ print_inetname(struct sockaddr_in *from)
836 } 836 }
837} 837}
838 838
839static inline void 839static void
840print(unsigned char *buf, int cc, struct sockaddr_in *from) 840print(unsigned char *buf, int cc, struct sockaddr_in *from)
841{ 841{
842 struct ip *ip; 842 struct ip *ip;