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

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

version 1.23, 2022/09/14 16:31:36 version 1.24, 2022/11/11 17:07:39
Line 536 
Line 536 
         char *cpass = NULL, *mpass = NULL;          char *cpass = NULL, *mpass = 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(&pkcs12_config, 0, sizeof(pkcs12_config));          memset(&pkcs12_config, 0, sizeof(pkcs12_config));

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