diff options
author | Tim Rice <tim@multitalents.net> | 2009-07-29 16:21:13 +0200 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2009-07-29 16:21:13 +0200 |
commit | caeb16498409fb0570e665a7400ce88c9c4d17be (patch) | |
tree | ae4ef0e5c21078c0b3ae0b31effe31a04a362871 /contrib | |
parent | - (dtucker) [openbsd-compat/getrrsetbyname.c] Reduce answer buffer size so it (diff) | |
download | openssh-caeb16498409fb0570e665a7400ce88c9c4d17be.tar.xz openssh-caeb16498409fb0570e665a7400ce88c9c4d17be.zip |
- (tim) [contrib/cygwin/ssh-user-config] Change script to call correct error
function. Patch from Corinna Vinschen.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/cygwin/ssh-user-config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/cygwin/ssh-user-config b/contrib/cygwin/ssh-user-config index 303aef0bb..f1a001a93 100644 --- a/contrib/cygwin/ssh-user-config +++ b/contrib/cygwin/ssh-user-config @@ -130,14 +130,14 @@ check_user_homedir() { pwdhome=$(awk -F: '{ if ( $3 == '${uid}' ) print $6; }' < ${SYSCONFDIR}/passwd) if [ "X${pwdhome}" = "X" ] then - csih_error_multiline \ + csih_error_multi \ "There is no home directory set for you in ${SYSCONFDIR}/passwd." \ 'Setting $HOME is not sufficient!' fi if [ ! -d "${pwdhome}" ] then - csih_error_multiline \ + csih_error_multi \ "${pwdhome} is set in ${SYSCONFDIR}/passwd as your home directory" \ 'but it is not a valid directory. Cannot create user identity files.' fi @@ -303,7 +303,7 @@ done # Check passwd file if [ ! -f ${SYSCONFDIR}/passwd ] then - csih_error_multiline \ + csih_error_multi \ "${SYSCONFDIR}/passwd is nonexistant. Please generate an ${SYSCONFDIR}/passwd file" \ 'first using mkpasswd. Check if it contains an entry for you and' \ 'please care for the home directory in your entry as well.' |