Lines Matching refs:days
31 #define DEFAULT_DAYS 30 /* default cert validity period in days */
136 {"days", OPT_DAYS, 'n',
137 "Number of days until newly generated certificate expires - default 30"},
279 int days = UNSET_DAYS; /* not explicitly set */
375 days = atoi(opt_arg());
376 if (days < -1) {
377 BIO_printf(bio_err, "%s: -days parameter arg must be >= -1\n",
604 if (preserve_dates && days != UNSET_DAYS) {
605 BIO_printf(bio_err, "Cannot use -preserve_dates with -days option\n");
608 if (days == UNSET_DAYS)
609 days = DEFAULT_DAYS;
823 if (!preserve_dates && !set_cert_times(x, NULL, NULL, days))