projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c2d39b
)
selftests: net: Clean up an unused variable
author
Jakub Sitnicki
<jakub@cloudflare.com>
Fri, 5 Oct 2018 08:19:57 +0000
(10:19 +0200)
committer
David S. Miller
<davem@davemloft.net>
Fri, 5 Oct 2018 21:53:44 +0000
(14:53 -0700)
Address compiler warning:
ip_defrag.c: In function 'send_udp_frags':
ip_defrag.c:206:16: warning: unused variable 'udphdr' [-Wunused-variable]
struct udphdr udphdr;
^~~~~~
Signed-off-by: Jakub Sitnicki <jakub@cloudflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/testing/selftests/net/ip_defrag.c
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/net/ip_defrag.c
b/tools/testing/selftests/net/ip_defrag.c
index 2366dc6bce71605f281b9300dea8c415796aac4e..61ae2782388e9d0921b06a4589c5d5662cb02e8e 100644
(file)
--- a/
tools/testing/selftests/net/ip_defrag.c
+++ b/
tools/testing/selftests/net/ip_defrag.c
@@
-203,7
+203,6
@@
static void send_udp_frags(int fd_raw, struct sockaddr *addr,
{
struct ip *iphdr = (struct ip *)ip_frame;
struct ip6_hdr *ip6hdr = (struct ip6_hdr *)ip_frame;
- struct udphdr udphdr;
int res;
int offset;
int frag_len;