From de97e29328cd59e52300e6f80ac90bb95d52fa03 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 14 Jun 2017 03:15:27 +0200 Subject: [PATCH] wireguard: remove misspelled debugging line There are no other "echo" debug lines in this file, and it seems clear that this one was accidentally left as a debugging line, since it misspelled "dependency". So, we just remove this line. We don't bump the package version, though, because this is pretty inconsequential. Signed-off-by: Jason A. Donenfeld --- net/wireguard/files/wireguard.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/net/wireguard/files/wireguard.sh b/net/wireguard/files/wireguard.sh index d862c1021..a826688d7 100644 --- a/net/wireguard/files/wireguard.sh +++ b/net/wireguard/files/wireguard.sh @@ -168,7 +168,6 @@ proto_wireguard_setup() { sed -E 's/\[?([0-9.:a-f]+)\]?:([0-9]+)/\1 \2/' | \ while IFS=$'\t ' read -r key address port; do [ -n "${port}" ] || continue - echo "adding host depedency for ${address} at ${config}" proto_add_host_dependency "${config}" "${address}" done