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

Diff for /src/usr.bin/ssh/Attic/radix.c between version 1.6 and 1.7

version 1.6, 1999/11/24 19:53:49 version 1.7, 2000/03/16 20:56:14
Line 213 
Line 213 
         p += creds->ticket_st.length;          p += creds->ticket_st.length;
         len = p - temp;          len = p - temp;
   
         return (uuencode(temp, len, buf));          return (uuencode((unsigned char *)temp, len, (char *)buf));
 }  }
   
 int  int
Line 225 
Line 225 
         char version;          char version;
         char temp[2048];          char temp[2048];
   
         if (!(len = uudecode(buf, temp, sizeof(temp))))          if (!(len = uudecode(buf, (unsigned char *)temp, sizeof(temp))))
                 return 0;                  return 0;
   
         p = temp;          p = temp;

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7