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

Diff for /src/usr.bin/ssh/cipher.c between version 1.113 and 1.114

version 1.113, 2019/09/06 05:23:55 version 1.114, 2020/01/23 10:24:29
Line 135 
Line 135 
         return ret;          return ret;
 }  }
   
   const char *
   compression_alg_list(int compression)
   {
   #ifdef WITH_ZLIB
           return compression ? "zlib@openssh.com,zlib,none" :
               "none,zlib@openssh.com,zlib";
   #else
           return "none";
   #endif
   }
   
 u_int  u_int
 cipher_blocksize(const struct sshcipher *c)  cipher_blocksize(const struct sshcipher *c)
 {  {

Legend:
Removed from v.1.113  
changed lines
  Added in v.1.114