aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/send.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-05-24 19:55:52 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-05-30 18:07:28 +0200
commit1f0e88343a6018ba06bf777781fb5e638cf66035 (patch)
treecdc2d50a25b6967db33977cf66996cccd506b4d8 /src/send.c
parentpeer: use iterator macro instead of callback (diff)
downloadwireguard-monolithic-historical-1f0e88343a6018ba06bf777781fb5e638cf66035.tar.xz
wireguard-monolithic-historical-1f0e88343a6018ba06bf777781fb5e638cf66035.zip
style: spaces after for loops
Diffstat (limited to 'src/send.c')
-rw-r--r--src/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c
index 72b2854..f83918a 100644
--- a/src/send.c
+++ b/src/send.c
@@ -127,7 +127,7 @@ void packet_create_data_done(struct sk_buff_head *queue, struct wireguard_peer *
return;
timers_any_authenticated_packet_traversal(peer);
- skb_queue_walk_safe(queue, skb, tmp) {
+ skb_queue_walk_safe (queue, skb, tmp) {
is_keepalive = skb->len == message_data_len(0);
if (likely(!socket_send_skb_to_peer(peer, skb, PACKET_CB(skb)->ds) && !is_keepalive))
data_sent = true;