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

Diff for /src/usr.bin/openssl/ecparam.c between version 1.21 and 1.22

version 1.21, 2021/05/10 20:58:32 version 1.22, 2022/11/11 17:07:38
Line 259 
Line 259 
         BIO *in = NULL, *out = NULL;          BIO *in = NULL, *out = NULL;
         int i, ret = 1;          int i, ret = 1;
   
         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);  
                 }  
         }          }
   
         memset(&ecparam_config, 0, sizeof(ecparam_config));          memset(&ecparam_config, 0, sizeof(ecparam_config));

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