Move right brace outside #ifdef HAVE_DISPCRYPT; found by cppcheck.

This commit is contained in:
Todd C. Miller
2014-01-08 16:23:06 -07:00
parent cadba501e4
commit 7ace435d44

View File

@@ -86,8 +86,8 @@ sudo_secureware_verify(struct passwd *pw, char *pass, sudo_auth *auth)
epass = bigcrypt(pass, pw_epasswd); epass = bigcrypt(pass, pw_epasswd);
else if (crypt_type == AUTH_CRYPT_CRYPT16) else if (crypt_type == AUTH_CRYPT_CRYPT16)
epass = crypt(pass, pw_epasswd); epass = crypt(pass, pw_epasswd);
}
# endif /* HAVE_DISPCRYPT */ # endif /* HAVE_DISPCRYPT */
}
#elif defined(HAVE_BIGCRYPT) #elif defined(HAVE_BIGCRYPT)
epass = bigcrypt(pass, pw_epasswd); epass = bigcrypt(pass, pw_epasswd);
#endif /* __alpha */ #endif /* __alpha */