From: Jameson Graef Rollins Date: Sat, 21 Feb 2009 20:39:44 +0000 (-0500) Subject: fix return in subkey_to_ssh_agent, so that it returns, instead of exits X-Git-Tag: monkeysphere_0.23~15^2 X-Git-Url: https://codewiz.org/gitweb?p=monkeysphere.git;a=commitdiff_plain;h=5eba4661d75f977b46c8db028c0e79241dd36d76 fix return in subkey_to_ssh_agent, so that it returns, instead of exits --- 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" }