]> granicus.if.org Git - sudo/commitdiff
Fix indentation
authorTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 27 Jan 2011 15:03:59 +0000 (10:03 -0500)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 27 Jan 2011 15:03:59 +0000 (10:03 -0500)
plugins/sudoers/check.c

index b72b287c73baab3133f683244fe4d0fe280f3603..af2412f3fbc8e267db2844259db6a83b80eaf0d8 100644 (file)
@@ -117,14 +117,14 @@ check_user(int validated, int mode)
     if (ISSET(mode, MODE_IGNORE_TICKET)) {
        SET(validated, FLAG_CHECK_USER);
     } else {
-    /*
-     * Don't prompt for the root passwd or if the user is exempt.
-     * If the user is not changing uid/gid, no need for a password.
-     */
-    if (user_uid == 0 || (user_uid == runas_pw->pw_uid &&
-       (!runas_gr || user_in_group(sudo_user.pw, runas_gr->gr_name))) ||
-       user_is_exempt())
-       return TRUE;
+       /*
+        * Don't prompt for the root passwd or if the user is exempt.
+        * If the user is not changing uid/gid, no need for a password.
+        */
+       if (user_uid == 0 || (user_uid == runas_pw->pw_uid &&
+           (!runas_gr || user_in_group(sudo_user.pw, runas_gr->gr_name))) ||
+           user_is_exempt())
+           return TRUE;
     }
 
     if (build_timestamp(&timestampdir, &timestampfile) == -1)