From ef864444687b788758ae35108ac508aac3442f3d Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 16 Jan 2013 02:34:20 +0000 Subject: [PATCH] hacks/ssh: Pass `-4' and `-6' options on to the master. Organization: Straylight/Edgeware From: Mark Wooding --- hacks/ssh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacks/ssh b/hacks/ssh index 64df966..cbec247 100755 --- a/hacks/ssh +++ b/hacks/ssh @@ -123,7 +123,7 @@ while :; do ;; ## These options are interesting to the master connection. - m,[aADLlRSwxXv]*) + m,[aADLlRSwxXv46]*) masteropts=("${masteropts[@]}" "-${o:0:1}$arg") ;; -- [mdw]