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

Diff for /src/usr.bin/openssl/verify.c between version 1.14 and 1.15

version 1.14, 2021/02/15 17:57:58 version 1.15, 2022/11/11 17:07:39
Line 268 
Line 268 
         int argsused;          int argsused;
         int ret = 1;          int ret = 1;
   
         if (single_execution) {          if (pledge("stdio rpath", NULL) == -1) {
                 if (pledge("stdio rpath", NULL) == -1) {                  perror("pledge");
                         perror("pledge");                  exit(1);
                         exit(1);  
                 }  
         }          }
   
         memset(&verify_config, 0, sizeof(verify_config));          memset(&verify_config, 0, sizeof(verify_config));

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15