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

Diff for /src/usr.bin/ssh/ssh_api.c between version 1.16 and 1.17

version 1.16, 2019/09/06 04:53:27 version 1.17, 2019/09/06 05:23:55
Line 51 
Line 51 
 int     use_privsep = 0;  int     use_privsep = 0;
 int     mm_sshkey_sign(struct sshkey *, u_char **, u_int *,  int     mm_sshkey_sign(struct sshkey *, u_char **, u_int *,
     u_char *, u_int, char *, u_int);      u_char *, u_int, char *, u_int);
   
   #ifdef WITH_OPENSSL
 DH      *mm_choose_dh(int, int, int);  DH      *mm_choose_dh(int, int, int);
   #endif
   
 /* Define these two variables here so that they are part of the library */  /* Define these two variables here so that they are part of the library */
 u_char *session_id2 = NULL;  u_char *session_id2 = NULL;
Line 64 
Line 67 
         return (-1);          return (-1);
 }  }
   
   #ifdef WITH_OPENSSL
 DH *  DH *
 mm_choose_dh(int min, int nbits, int max)  mm_choose_dh(int min, int nbits, int max)
 {  {
         return (NULL);          return (NULL);
 }  }
   #endif
   
 /* API */  /* API */
   
Line 82 
Line 87 
         int r;          int r;
   
         if (!called) {          if (!called) {
   #ifdef WITH_OPENSSL
                 OpenSSL_add_all_algorithms();                  OpenSSL_add_all_algorithms();
   #endif
                 called = 1;                  called = 1;
         }          }
   

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17