diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:58:09 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 17:46:15 -0500 | 
| commit | e0a630795b35f3137a3204e0d8e5fea928f8962b (patch) | |
| tree | f72792762c7481f2e0ef550de5dceaa40930ffa3 /net/net.c | |
| parent | 738853bb6d290dc4b52d8c2989c0998d7aa26913 (diff) | |
| download | olio-uboot-2014.01-e0a630795b35f3137a3204e0d8e5fea928f8962b.tar.xz olio-uboot-2014.01-e0a630795b35f3137a3204e0d8e5fea928f8962b.zip | |
net: cosmetic: Un-typedef ICMP_t
Remove typedef and lower-case name
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'net/net.c')
| -rw-r--r-- | net/net.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -825,7 +825,7 @@ static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)  static void receive_icmp(struct ip_udp_hdr *ip, int len,  			IPaddr_t src_ip, struct ethernet_hdr *et)  { -	ICMP_t *icmph = (ICMP_t *)&ip->udp_src; +	struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;  	switch (icmph->type) {  	case ICMP_REDIRECT: |