]> andersk Git - openssh.git/commitdiff
- (dtucker) openbsd-compat/xcrypt.c] #elsif -> #elif
authordtucker <dtucker>
Sat, 6 Sep 2003 23:43:42 +0000 (23:43 +0000)
committerdtucker <dtucker>
Sat, 6 Sep 2003 23:43:42 +0000 (23:43 +0000)
ChangeLog
openbsd-compat/xcrypt.c

index 717ec007b326aa55740b6cea267ad7c0b0636979..2d268354c5016b8ad03f48d09e4cabbf989d79f0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
  - (dtucker) [regress/sftp-batch.sh] Make temporary batch file name more
    distinctive, so "rm ${BATCH}.*" doesn't match the script itself.
  - (dtucker) [regress/sftp-cmds.sh] Skip quoted file test on Cygwin.
+ - (dtucker) openbsd-compat/xcrypt.c] #elsif -> #elif
 
 20030906
  - (dtucker) [acconfig.h configure.ac uidswap.c] Prefer setuid/setgid on AIX.
index 882185718f733b9c7aa03b35a3abec12ef4c821a..5b5d69c72efc95fce67864843119b76aaba6ddbe 100644 (file)
@@ -65,12 +65,12 @@ xcrypt(const char *password, const char *salt)
                 crypted = md5_crypt(password, salt);
         else
                 crypted = crypt(password, salt);
-# elsif defined(__hpux) && !defined(HAVE_SECUREWARE)
+# elif defined(__hpux) && !defined(HAVE_SECUREWARE)
        if (iscomsec())
                 crypted = bigcrypt(password, salt);
         else
                 crypted = crypt(password, salt);
-# elsif defined(HAVE_SECUREWARE)
+# elif defined(HAVE_SECUREWARE)
         crypted = bigcrypt(password, salt);
 # else
         crypted = crypt(password, salt);
@@ -99,12 +99,12 @@ shadow_pw(struct passwd *pw)
        struct passwd_adjunct *spw;
        if (issecure() && (spw = getpwanam(pw->pw_name)) != NULL)
                pw_password = spw->pwa_passwd;
-# elsif defined(HAVE_SECUREWARE)
+# elif defined(HAVE_SECUREWARE)
        struct pr_passwd *spw = getprpwnam(pw->pw_name);
 
        if (spw != NULL)
                pw_password = spw->ufld.fd_encrypt;
-# elsif defined(__hpux) && !defined(HAVE_SECUREWARE)
+# elif defined(__hpux) && !defined(HAVE_SECUREWARE)
        struct pr_passwd *spw;
         if (iscomsec() && (spw = getprpwnam(pw->pw_name)) != NULL)
                 pw_password = spw->ufld.fd_encrypt;
This page took 0.032726 seconds and 5 git commands to generate.