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

Diff for /src/usr.bin/ssh/Attic/key.c between version 1.5 and 1.6

version 1.5, 2000/05/04 22:38:00 version 1.6, 2000/05/05 18:53:42
Line 255 
Line 255 
                 len = 2*strlen(cp);                  len = 2*strlen(cp);
                 blob = xmalloc(len);                  blob = xmalloc(len);
                 n = uudecode(cp, blob, len);                  n = uudecode(cp, blob, len);
                   if (n < 0) {
                           error("uudecode %s failed", cp);
                           return 0;
                   }
                 k = dsa_key_from_blob(blob, n);                  k = dsa_key_from_blob(blob, n);
                 if (k == NULL)                  if (k == NULL)
                          return 0;                           return 0;

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