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

Diff for /src/usr.bin/openssl/req.c between version 1.23 and 1.24

version 1.23, 2022/02/03 17:44:04 version 1.24, 2022/11/11 17:07:39
Line 563 
Line 563 
         const EVP_MD *md_alg = NULL;          const EVP_MD *md_alg = NULL;
         char *p;          char *p;
   
         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(&req_config, 0, sizeof(req_config));          memset(&req_config, 0, sizeof(req_config));

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24