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

Diff for /src/usr.bin/ssh/authfile.c between version 1.3 and 1.4

version 1.3, 1999/09/28 04:45:35 version 1.4, 1999/09/30 16:34:21
Line 267 
Line 267 
     xfree(buffer_get_string(&buffer, NULL));      xfree(buffer_get_string(&buffer, NULL));
   
   /* Check that it is a supported cipher. */    /* Check that it is a supported cipher. */
   if ((cipher_mask() & (1 << cipher_type)) == 0)    if (cipher_type != SSH_CIPHER_NONE &&
        (cipher_mask() & (1 << cipher_type)) == 0)
     {      {
       debug("Unsupported cipher %.100s used in key file %.200s.",        debug("Unsupported cipher %.100s used in key file %.200s.",
             cipher_name(cipher_type), filename);              cipher_name(cipher_type), filename);

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