From af844120a406582a0fa70e7dd1b119cad774161e Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 31 Dec 2012 05:31:38 +0000 Subject: [PATCH 1/1] hacks/ssh: Fix stupid behaviour when hostname is `t'. --- hacks/ssh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacks/ssh b/hacks/ssh index d8a46a4..64df966 100755 --- a/hacks/ssh +++ b/hacks/ssh @@ -146,7 +146,7 @@ while :; do ## A bare word. Maybe it's the hostname, or the start of the command. *) - case ${host-t} in + case ${host-t}${host+nil} in t) host=$1 ;; *) break ;; esac -- 2.11.0