From 291ca0874a4479b047dd56bbc8646833dbce29a6 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Fri, 18 Nov 2016 12:16:10 +0100 Subject: [PATCH] Fixed two more typos --- pihole | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pihole b/pihole index 56953b03..017bdaec 100755 --- a/pihole +++ b/pihole @@ -120,11 +120,11 @@ piholeEnable() { if [[ $# > 1 ]] ; then if [[ ${2} == *"s"* ]] ; then tt=${2%"s"} - echo "::: Blocking will be reenabled in ${tt} seconds" + echo "::: Blocking will be re-enabled in ${tt} seconds" nohup bash -c "sleep ${tt}; pihole enable" /dev/null & elif [[ ${2} == *"m"* ]] ; then tt=${2%"m"} - echo "::: Blocking will be reenabled in ${tt} minutes" + echo "::: Blocking will be re-enabled in ${tt} minutes" tt=$((${tt}*60)) nohup bash -c "sleep ${tt}; pihole enable" /dev/null & else