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

Diff for /src/usr.bin/openssl/enc.c between version 1.24 and 1.25

version 1.24, 2021/12/07 20:13:15 version 1.25, 2022/11/11 17:07:39
Line 344 
Line 344 
         char pname[PROG_NAME_SIZE + 1];          char pname[PROG_NAME_SIZE + 1];
         int i;          int i;
   
         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(&enc_config, 0, sizeof(enc_config));          memset(&enc_config, 0, sizeof(enc_config));

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