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

Diff for /src/usr.bin/ssh/ssh-pkcs11-helper.c between version 1.20 and 1.21

version 1.20, 2019/09/06 04:53:27 version 1.21, 2019/09/06 05:23:55
Line 35 
Line 35 
 #include "ssh-pkcs11.h"  #include "ssh-pkcs11.h"
 #include "ssherr.h"  #include "ssherr.h"
   
   #ifdef WITH_OPENSSL
   
 /* borrows code from sftp-server and ssh-agent */  /* borrows code from sftp-server and ssh-agent */
   
 struct pkcs11_keyinfo {  struct pkcs11_keyinfo {
Line 413 
Line 415 
                         fatal("%s: buffer error: %s", __func__, ssh_err(r));                          fatal("%s: buffer error: %s", __func__, ssh_err(r));
         }          }
 }  }
   
   #else /* WITH_OPENSSL */
   void
   cleanup_exit(int i)
   {
           _exit(i);
   }
   
   int
   main(int argc, char **argv)
   {
           fprintf(stderr, "PKCS#11 code is not enabled\n");
           return 1;
   }
   #endif /* WITH_OPENSSL */

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21