fix indentation

This commit is contained in:
Guillaume Rousse 2009-05-02 17:20:41 +02:00
parent 39a143e083
commit 41746f0bcc

View File

@ -20,14 +20,16 @@ _ssh()
return 0 return 0
;; ;;
-c) -c)
COMPREPLY=( $( compgen -W '3des-cbc aes128-cbc aes192-cbc \ COMPREPLY=( $( compgen -W '3des-cbc aes128-cbc \
aes256-cbc aes128-ctr aes192-ctr aes256-ctr arcfour128 \ aes192-cbc aes256-cbc aes128-ctr aes192-ctr \
arcfour256 arcfour blowfish-cbc cast128-cbc' -- $cur ) ) aes256-ctr arcfour128 arcfour256 arcfour \
blowfish-cbc cast128-cbc' -- $cur ) )
return 0 return 0
;; ;;
-c) -c)
COMPREPLY=( $( compgen -W 'hmac-md5 hmac-sha1 umac-64@openssh.com \ COMPREPLY=( $( compgen -W 'hmac-md5 hmac-sha1 \
hmac-ripemd160 hmac-sha1-96 hmac-md5-96' -- $cur ) ) umac-64@openssh.com hmac-ripemd160 \
hmac-sha1-96 hmac-md5-96' -- $cur ) )
return 0 return 0
;; ;;
-l) -l)
@ -35,24 +37,31 @@ _ssh()
return 0 return 0
;; ;;
-o) -o)
COMPREPLY=( $( compgen -W 'AddressFamily BatchMode BindAddress \ COMPREPLY=( $( compgen -W 'AddressFamily BatchMode \
ChallengeResponseAuthentication CheckHostIP Cipher Ciphers \ BindAddress ChallengeResponseAuthentication \
ClearAllForwardings Compression CompressionLevel \ CheckHostIP Cipher Ciphers ClearAllForwardings \
ConnectionAttempts ConnectTimeout ControlMaster ControlPath \ Compression CompressionLevel \
DynamicForward EscapeChar ExitOnForwardFailure ForwardAgent \ ConnectionAttempts ConnectTimeout \
ForwardX11 ForwardX11Trusted GatewayPorts GlobalKnownHostsFile \ ControlMaster ControlPath DynamicForward \
GSSAPIAuthentication GSSAPIDelegateCredentials HashKnownHosts \ EscapeChar ExitOnForwardFailure ForwardAgent \
Host HostbasedAuthentication HostKeyAlgorithms HostKeyAlias \ ForwardX11 ForwardX11Trusted GatewayPorts \
HostName IdentityFile IdentitiesOnly KbdInteractiveDevices \ GlobalKnownHostsFile GSSAPIAuthentication \
GSSAPIDelegateCredentials HashKnownHosts Host \
HostbasedAuthentication HostKeyAlgorithms \
HostKeyAlias HostName IdentityFile \
IdentitiesOnly KbdInteractiveDevices \
LocalCommand LocalForward LogLevel MACs \ LocalCommand LocalForward LogLevel MACs \
NoHostAuthenticationForLocalhost NumberOfPasswordPrompts \ NoHostAuthenticationForLocalhost \
PasswordAuthentication PermitLocalCommand Port \ NumberOfPasswordPrompts PasswordAuthentication \
PreferredAuthentications Protocol ProxyCommand \ PermitLocalCommand Port \
PubkeyAuthentication RekeyLimit RemoteForward \ PreferredAuthentications Protocol \
RhostsRSAAuthentication RSAAuthentication SendEnv \ ProxyCommand PubkeyAuthentication RekeyLimit \
ServerAliveInterval ServerAliveCountMax SmartcardDevice \ RemoteForward RhostsRSAAuthentication \
StrictHostKeyChecking TCPKeepAlive Tunnel TunnelDevice \ RSAAuthentication SendEnv ServerAliveInterval \
UsePrivilegedPort User UserKnownHostsFile VerifyHostKeyDNS \ ServerAliveCountMax SmartcardDevice \
StrictHostKeyChecking TCPKeepAlive Tunnel \
TunnelDevice UsePrivilegedPort User \
UserKnownHostsFile VerifyHostKeyDNS \
VisualHostKey XAuthLocation' -- $cur ) ) VisualHostKey XAuthLocation' -- $cur ) )
return 0 return 0
;; ;;