aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/Makefile3
-rw-r--r--src/tools/config.c2
2 files changed, 1 insertions, 4 deletions
diff --git a/src/tools/Makefile b/src/tools/Makefile
index 1407de4..01f873c 100644
--- a/src/tools/Makefile
+++ b/src/tools/Makefile
@@ -80,9 +80,6 @@ install: wg
@[ "$(WITH_WGQUICK)" = "yes" -a "$(WITH_SYSTEMDUNITS)" = "yes" ] || exit 0; \
install -v -d "$(DESTDIR)$(SYSTEMDUNITDIR)" && install -m 0644 -v wg-quick@.service "$(DESTDIR)$(SYSTEMDUNITDIR)/wg-quick@.service"
-check: clean
- CFLAGS=-g scan-build --view --keep-going $(MAKE) wg
-
help:
@cat INSTALL
diff --git a/src/tools/config.c b/src/tools/config.c
index 0d8daeb..9f3f990 100644
--- a/src/tools/config.c
+++ b/src/tools/config.c
@@ -223,7 +223,7 @@ static inline bool parse_allowedips(struct wgpeer *peer, struct wgallowedip **la
if (!mutable) {
perror("strdup");
return false;
- };
+ }
peer->flags |= WGPEER_REPLACE_ALLOWEDIPS;
if (!strlen(value)) {
free(mutable);