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

Diff for /src/usr.bin/ssh/Attic/auth-krb4.c between version 1.4 and 1.5

version 1.4, 1999/10/01 18:18:40 version 1.5, 1999/11/02 19:10:14
Line 171 
Line 171 
   return 0;    return 0;
 }  }
   
 int auth_afs_token(char *server_user, uid_t uid, const char *string)  int auth_afs_token(struct passwd *pw, const char *token_string)
 {  {
   CREDENTIALS creds;    CREDENTIALS creds;
     uid_t uid = pw->pw_uid;
   
   if (!radix_to_creds(string, &creds)) {    if (!radix_to_creds(token_string, &creds)) {
     log("Protocol error decoding AFS token");      log("Protocol error decoding AFS token");
     packet_send_debug("Protocol error decoding AFS token");      packet_send_debug("Protocol error decoding AFS token");
     packet_start(SSH_SMSG_FAILURE);      packet_start(SSH_SMSG_FAILURE);

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5