[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.4 and 1.5

version 1.4, 2000/05/04 09:50:22 version 1.5, 2000/05/04 22:38:00
Line 297 
Line 297 
                 unsigned char *blob, *uu;                  unsigned char *blob, *uu;
                 dsa_make_key_blob(key, &blob, &len);                  dsa_make_key_blob(key, &blob, &len);
                 uu = xmalloc(2*len);                  uu = xmalloc(2*len);
                 n = uuencode(blob, len, uu);                  n = uuencode(blob, len, uu, 2*len);
                 fprintf(f, "%s %s", SSH_DSS, uu);                  if (n > 0) {
                           fprintf(f, "%s %s", SSH_DSS, uu);
                           success = 1;
                   }
                 xfree(blob);                  xfree(blob);
                 xfree(uu);                  xfree(uu);
                 success = 1;  
         }          }
         return success;          return success;
 }  }

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