diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-10-25 10:55:00 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-10-25 10:55:00 +0200 |
commit | a841dceb4c506fd21cd4278bd2dbf04fc4f13fc2 (patch) | |
tree | d52569806cfc5352ab47201a9e1ddc7a7b66a09b /contrib | |
parent | - (dtucker) [configure.ac] Bug #1104: Tru64's printf family doesn't (diff) | |
download | openssh-a841dceb4c506fd21cd4278bd2dbf04fc4f13fc2.tar.xz openssh-a841dceb4c506fd21cd4278bd2dbf04fc4f13fc2.zip |
- (dtucker) [contrib/cygwin/ssh-user-config] Remove duplicate yes/no
prompt. Patch from vinschen at redhat.com.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/cygwin/ssh-user-config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/cygwin/ssh-user-config b/contrib/cygwin/ssh-user-config index fe07ce360..9482efe9e 100644 --- a/contrib/cygwin/ssh-user-config +++ b/contrib/cygwin/ssh-user-config @@ -198,7 +198,7 @@ fi if [ ! -f "${pwdhome}/.ssh/id_rsa" ] then - if request "Shall I create an SSH2 RSA identity file for you? (yes/no) " + if request "Shall I create an SSH2 RSA identity file for you?" then echo "Generating ${pwdhome}/.ssh/id_rsa" if [ "${with_passphrase}" = "yes" ] @@ -217,7 +217,7 @@ fi if [ ! -f "${pwdhome}/.ssh/id_dsa" ] then - if request "Shall I create an SSH2 DSA identity file for you? (yes/no) " + if request "Shall I create an SSH2 DSA identity file for you?" then echo "Generating ${pwdhome}/.ssh/id_dsa" if [ "${with_passphrase}" = "yes" ] |