diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-08-22 01:56:00 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-08-22 01:56:00 +0200 |
commit | 13e085e07d5df972e2b10564a305040ac2571f82 (patch) | |
tree | 47931a15d3783bb5336bc1494c109bb78a262e14 | |
parent | 023946ff3bcf0817f23467a1d900e0f7bcecd1a5 (diff) |
routingtable: hyphen was ugly
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | src/Kbuild | 2 | ||||
-rw-r--r-- | src/routingtable.c (renamed from src/routing-table.c) | 2 | ||||
-rw-r--r-- | src/routingtable.h (renamed from src/routing-table.h) | 0 | ||||
-rw-r--r-- | src/wireguard.h | 2 |
4 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ ccflags-y := -O3 -fvisibility=hidden ccflags-$(CONFIG_WIREGUARD_DEBUG) := -DDEBUG -g ccflags-y += -Wframe-larger-than=8192 -wireguard-y := main.o noise.o device.o peer.o timers.o data.o send.o receive.o socket.o config.o hashtables.o routing-table.o ratelimiter.o cookie.o +wireguard-y := main.o noise.o device.o peer.o timers.o data.o send.o receive.o socket.o config.o hashtables.o routingtable.o ratelimiter.o cookie.o wireguard-y += crypto/curve25519.o crypto/chacha20poly1305.o crypto/blake2s.o crypto/siphash24.o ifeq ($(CONFIG_X86_64),y) wireguard-y += crypto/chacha20-ssse3-x86_64.o crypto/poly1305-sse2-x86_64.o diff --git a/src/routing-table.c b/src/routingtable.c index be12b43..250c6a1 100644 --- a/src/routing-table.c +++ b/src/routingtable.c @@ -1,7 +1,7 @@ /* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #include "wireguard.h" -#include "routing-table.h" +#include "routingtable.h" struct routing_table_node { struct routing_table_node __rcu *bit[2]; diff --git a/src/routing-table.h b/src/routingtable.h index c4fd05d..c4fd05d 100644 --- a/src/routing-table.h +++ b/src/routingtable.h diff --git a/src/wireguard.h b/src/wireguard.h index 2985323..f0020a3 100644 --- a/src/wireguard.h +++ b/src/wireguard.h @@ -26,7 +26,7 @@ #include "crypto/curve25519.h" #include "crypto/siphash24.h" #include "noise.h" -#include "routing-table.h" +#include "routingtable.h" #include "hashtables.h" #include "peer.h" #include "cookie.h" |