]> granicus.if.org Git - sudo/commitdiff
Move right brace outside #ifdef HAVE_DISPCRYPT; found by cppcheck.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 8 Jan 2014 23:23:06 +0000 (16:23 -0700)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 8 Jan 2014 23:23:06 +0000 (16:23 -0700)
plugins/sudoers/auth/secureware.c

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