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

Diff for /src/usr.bin/openssl/gendh.c between version 1.12 and 1.13

version 1.12, 2021/11/20 18:10:48 version 1.13, 2022/11/11 17:07:39
Line 134 
Line 134 
         BIO *out = NULL;          BIO *out = NULL;
         char *strbits = NULL;          char *strbits = NULL;
   
         if (single_execution) {          if (pledge("stdio cpath wpath rpath", NULL) == -1) {
                 if (pledge("stdio cpath wpath rpath", NULL) == -1) {                  perror("pledge");
                         perror("pledge");                  exit(1);
                         exit(1);  
                 }  
         }          }
   
         if ((cb = BN_GENCB_new()) == NULL) {          if ((cb = BN_GENCB_new()) == NULL) {

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13