Lines Matching defs:ve_utc
179 extern time_t ve_utc;
180 time_t ve_utc = 0;
182 static time_t ve_utc = 0;
187 * set ve_utc used for certificate verification
196 if (utc > ve_utc &&
197 (ve_utc == 0 || (utc - ve_utc) < VE_UTC_MAX_JUMP)) {
198 DEBUG_PRINTF(2, ("Set ve_utc=%jd\n", (intmax_t)utc));
199 ve_utc = utc;
469 if (ve_utc < not_before)
471 else if (ve_utc > not_after)
479 gdate(date, sizeof(date), ve_utc), rc);
545 * Clock is probably bogus so we use ve_utc.
547 mc.days = (ve_utc / SECONDS_PER_DAY) + X509_DAYS_TO_UTC0;
548 mc.seconds = (ve_utc % SECONDS_PER_DAY);
575 gdate(date, sizeof(date), ve_utc));