diff options
author | AsciiWolf <mail@asciiwolf.com> | 2017-02-24 18:14:02 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-02-24 18:14:02 +0100 |
commit | 13e785f7a0d2c78fbd822b1157ef9d7ee3fef805 (patch) | |
tree | 168c1a8cd9b6132ef15c61a302d55303e66da06d /src/libsystemd-network/arp-util.c | |
parent | ecc0eab247da25a6767ccabd2162a4d03de6ee8c (diff) |
Fix missing space in comments (#5439)
Diffstat (limited to 'src/libsystemd-network/arp-util.c')
-rw-r--r-- | src/libsystemd-network/arp-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/arp-util.c b/src/libsystemd-network/arp-util.c index 02028bf28a..2e02b3fa66 100644 --- a/src/libsystemd-network/arp-util.c +++ b/src/libsystemd-network/arp-util.c @@ -58,7 +58,7 @@ int arp_network_bind_raw_socket(int ifindex, be32_t address, const struct ether_ BPF_STMT(BPF_ALU + BPF_XOR + BPF_X, 0), /* A xor X */ BPF_JUMP(BPF_JMP + BPF_JEQ + BPF_K, 0, 0, 1), /* A == 0 ? */ BPF_STMT(BPF_RET + BPF_K, 0), /* ignore */ - /* Sender Protocol Address or Target Protocol Address must be equal to the one we care about*/ + /* Sender Protocol Address or Target Protocol Address must be equal to the one we care about */ BPF_STMT(BPF_LD + BPF_IMM, htobe32(address)), /* A <- clients IP */ BPF_STMT(BPF_MISC + BPF_TAX, 0), /* X <- A */ BPF_STMT(BPF_LD + BPF_W + BPF_ABS, offsetof(struct ether_arp, arp_spa)), /* A <- SPA */ |