[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.17 and 1.18

version 1.17, 2023/04/14 15:27:13 version 1.18, 2023/11/21 17:56:19
Line 251 
Line 251 
   
         fprintf(stderr, "\nValid purposes:\n\n");          fprintf(stderr, "\nValid purposes:\n\n");
         for (i = 0; i < X509_PURPOSE_get_count(); i++) {          for (i = 0; i < X509_PURPOSE_get_count(); i++) {
                 X509_PURPOSE *ptmp = X509_PURPOSE_get0(i);                  const X509_PURPOSE *ptmp = X509_PURPOSE_get0(i);
                 fprintf(stderr, "  %-18s%s\n", X509_PURPOSE_get0_sname(ptmp),                  fprintf(stderr, "  %-18s%s\n", X509_PURPOSE_get0_sname(ptmp),
                     X509_PURPOSE_get0_name(ptmp));                      X509_PURPOSE_get0_name(ptmp));
         }          }

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18