From 89f7488ce77f47cde9444957194608e044836f23 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 19 Jul 2014 18:12:26 +0100 Subject: [PATCH] bin/sign: Don't continue processing after encountering a directive. --- bin/sign | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sign b/bin/sign index 7c84ae6..c1f7c62 100755 --- a/bin/sign +++ b/bin/sign @@ -40,7 +40,7 @@ while read line <&3; do ## Read the host line. set -- $line case "$1" in - @domain) domain=$2 ;; + @domain) domain=$2; continue ;; @*) echo >&2 "$0: unknown directive \`$1'"; exit 1 ;; esac host=$1 -- 2.11.0