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

Diff for /src/usr.bin/openssl/ca.c between version 1.37 and 1.38

version 1.37, 2021/08/28 02:24:10 version 1.38, 2021/08/28 02:40:17
Line 2097 
Line 2097 
                 if (X509_gmtime_adj(X509_get_notBefore(ret), 0) == NULL)                  if (X509_gmtime_adj(X509_get_notBefore(ret), 0) == NULL)
                         goto err;                          goto err;
         } else if (setCertificateTime(X509_get_notBefore(ret), startdate) == -1) {          } else if (setCertificateTime(X509_get_notBefore(ret), startdate) == -1) {
                 BIO_printf(bio_err, "Invalid start date %s\n",                  BIO_printf(bio_err, "Invalid start date %s\n", startdate);
                     startdate);  
                 goto err;                  goto err;
         }          }
   
Line 2107 
Line 2106 
                     NULL) == NULL)                      NULL) == NULL)
                         goto err;                          goto err;
         } else if (setCertificateTime(X509_get_notAfter(ret), enddate) == -1) {          } else if (setCertificateTime(X509_get_notAfter(ret), enddate) == -1) {
                 BIO_printf(bio_err, "Invalid end date %s\n",                  BIO_printf(bio_err, "Invalid end date %s\n", enddate);
                     enddate);  
                 goto err;                  goto err;
         }          }
   

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38