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

Diff for /src/usr.bin/openssl/dgst.c between version 1.19 and 1.20

version 1.19, 2022/01/14 09:28:07 version 1.20, 2022/11/11 17:07:38
Line 338 
Line 338 
         int siglen = 0;          int siglen = 0;
         char *passin = NULL;          char *passin = 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);  
                 }  
         }          }
   
         if ((buf = malloc(BUFSIZE)) == NULL) {          if ((buf = malloc(BUFSIZE)) == NULL) {

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20