[BACK]Return to sudo.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Diff for /src/usr.bin/sudo/Attic/sudo.c between version 1.20 and 1.21

version 1.20, 2003/04/19 21:57:17 version 1.21, 2003/12/23 02:19:51
Line 529 
Line 529 
         pw.pw_name = pw_name;          pw.pw_name = pw_name;
         sudo_user.pw = &pw;          sudo_user.pw = &pw;
   
         log_error(0, "uid %lu does not exist in the passwd file!",          /*
             (unsigned long) pw.pw_uid);           * If we are in -k/-K mode, just spew to stderr.  It is not unusual for
            * users to place "sudo -k" in a .logout file which can cause sudo to
            * be run during reboot after the YP/NIS/NIS+/LDAP/etc daemon has died.
            */
           if (sudo_mode & (MODE_INVALIDATE|MODE_KILL))
               errx(1, "uid %s does not exist in the passwd file!", pw_name);
           log_error(0, "uid %s does not exist in the passwd file!", pw_name);
     }      }
     if (user_shell == NULL || *user_shell == '\0')      if (user_shell == NULL || *user_shell == '\0')
         user_shell = sudo_user.pw->pw_shell;          user_shell = sudo_user.pw->pw_shell;

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21