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

Diff for /src/usr.bin/ssh/auth.c between version 1.48 and 1.49

version 1.48, 2003/06/02 09:17:34 version 1.49, 2003/08/26 09:58:43
Line 471 
Line 471 
                 auth_debug_init = 1;                  auth_debug_init = 1;
         }          }
 }  }
   
   struct passwd *
   fakepw(void)
   {
           static struct passwd fake;
   
           memset(&fake, 0, sizeof(fake));
           fake.pw_name = "NOUSER";
           fake.pw_passwd =
               "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
           fake.pw_gecos = "NOUSER";
           fake.pw_uid = -1;
           fake.pw_gid = -1;
           fake.pw_class = "";
           fake.pw_dir = "/nonexist";
           fake.pw_shell = "/nonexist";
   
           return (&fake);
   }

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49