summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/netinet/ip_output.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-04-28 21:49:50 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-04-28 21:49:50 +0000
commit3274c87676e11cfbf1f6d3d554762ecdea47fe79 (patch)
tree4824c477c358154c6bb33d0e8379ff36f0039b20 /cpukit/libnetworking/netinet/ip_output.c
parent2005-04-28 Jennifer Averett <jennifer.averett@oarcorp.com> (diff)
downloadrtems-3274c87676e11cfbf1f6d3d554762ecdea47fe79.tar.bz2
2005-04-28 Joel Sherrill <joel@OARcorp.com>
* libnetworking/kern/kern_sysctl.c, libnetworking/libc/inet_ntop.c, libnetworking/net/if_ppp.c, libnetworking/net/pppcompress.c, libnetworking/net/slcompress.c, libnetworking/netinet/ip_output.c, libnetworking/netinet/udp_usrreq.c, libnetworking/nfs/bootp_subr.c, libnetworking/rtems/rtems_select.c, libnetworking/rtems/rtems_showifstat.c, libnetworking/rtems/rtems_showroute.c, libnetworking/rtems/rtems_syscall.c: Fixed type mismatch and uninitialized variable warnings.
Diffstat (limited to 'cpukit/libnetworking/netinet/ip_output.c')
-rw-r--r--cpukit/libnetworking/netinet/ip_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libnetworking/netinet/ip_output.c b/cpukit/libnetworking/netinet/ip_output.c
index 810f6c7479..8d4a2e8a7f 100644
--- a/cpukit/libnetworking/netinet/ip_output.c
+++ b/cpukit/libnetworking/netinet/ip_output.c
@@ -100,7 +100,7 @@ ip_output(m0, opt, ro, flags, imo)
struct ifnet *ifp;
struct mbuf *m = m0;
int hlen = sizeof (struct ip);
- int len, off, error = 0;
+ int len = 0, off, error = 0;
struct sockaddr_in *dst;
struct in_ifaddr *ia;
int isbroadcast;