diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Completion/Unix/Command/_ssh | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 6b1da0842..fe69dca30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-12-10 Mikael Magnusson <mikachu@gmail.com> + + * 29962: Completion/Unix/Command/_ssh: Actually return ret. + 2011-12-10 Peter Stephenson <p.w.stephenson@ntlworld.com> * GI: 29977: Completion/Linux/Command/_modutils: caching and @@ -15711,5 +15715,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5532 $ +* $Revision: 1.5533 $ ***************************************************** diff --git a/Completion/Unix/Command/_ssh b/Completion/Unix/Command/_ssh index a6f2b40a2..dc4b65d31 100644 --- a/Completion/Unix/Command/_ssh +++ b/Completion/Unix/Command/_ssh @@ -377,6 +377,8 @@ _ssh () { ;; esac done + + return ret } _ssh_users () { |