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

Diff for /src/usr.bin/ssh/Attic/auth1.c between version 1.74 and 1.75

version 1.74, 2010/06/25 08:46:17 version 1.75, 2010/08/31 09:58:37
Line 161 
Line 161 
          * trust the client; root on the client machine can           * trust the client; root on the client machine can
          * claim to be any user.           * claim to be any user.
          */           */
         client_user = packet_get_string(&ulen);          client_user = packet_get_cstring(&ulen);
   
         /* Get the client host key. */          /* Get the client host key. */
         client_host_key = key_new(KEY_RSA1);          client_host_key = key_new(KEY_RSA1);
Line 321 
Line 321 
         packet_read_expect(SSH_CMSG_USER);          packet_read_expect(SSH_CMSG_USER);
   
         /* Get the user name. */          /* Get the user name. */
         user = packet_get_string(&ulen);          user = packet_get_cstring(&ulen);
         packet_check_eom();          packet_check_eom();
   
         if ((style = strchr(user, ':')) != NULL)          if ((style = strchr(user, ':')) != NULL)

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75