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

Diff for /src/usr.bin/ssh/ssh.c between version 1.379 and 1.380

version 1.379, 2013/07/12 05:48:55 version 1.380, 2013/07/20 01:44:37
Line 270 
Line 270 
         /* Get user data. */          /* Get user data. */
         pw = getpwuid(original_real_uid);          pw = getpwuid(original_real_uid);
         if (!pw) {          if (!pw) {
                 logit("You don't exist, go away!");                  logit("No user exists for uid %lu", (u_long)original_real_uid);
                 exit(255);                  exit(255);
         }          }
         /* Take a copy of the returned structure. */          /* Take a copy of the returned structure. */

Legend:
Removed from v.1.379  
changed lines
  Added in v.1.380