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

Diff for /src/usr.bin/openssl/rsa.c between version 1.16 and 1.17

version 1.16, 2022/01/14 09:26:41 version 1.17, 2022/11/11 17:07:39
Line 255 
Line 255 
         BIO *out = NULL;          BIO *out = NULL;
         char *passin = NULL, *passout = NULL;          char *passin = NULL, *passout = NULL;
   
         if (single_execution) {          if (pledge("stdio cpath wpath rpath tty", NULL) == -1) {
                 if (pledge("stdio cpath wpath rpath tty", NULL) == -1) {                  perror("pledge");
                         perror("pledge");                  exit(1);
                         exit(1);  
                 }  
         }          }
   
         memset(&rsa_config, 0, sizeof(rsa_config));          memset(&rsa_config, 0, sizeof(rsa_config));

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