From 5eba4661d75f977b46c8db028c0e79241dd36d76 Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins Date: Sat, 21 Feb 2009 15:39:44 -0500 Subject: [PATCH] fix return in subkey_to_ssh_agent, so that it returns, instead of exits --- src/share/m/subkey_to_ssh_agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/share/m/subkey_to_ssh_agent b/src/share/m/subkey_to_ssh_agent index a2cf9a0..7fb2fdb 100644 --- a/src/share/m/subkey_to_ssh_agent +++ b/src/share/m/subkey_to_ssh_agent @@ -110,5 +110,5 @@ You might want to 'monkeysphere gen-subkey'" # FIXME: sort out the return values: we're just returning the # success or failure of the final authentication subkey in this # case. What if earlier ones failed? - exit "$keysuccess" + return "$keysuccess" } -- 2.25.1