&this->nextUpdate, utc);
if (now > this->nextUpdate)
{
- written += fprintf(stream, "expired (since %V)\n", &now, &this->nextUpdate);
+ written += fprintf(stream, "expired (%V ago)\n", &now, &this->nextUpdate);
}
else
{
}
else if (now > this->nextUpdate)
{
- written += fprintf(stream, "expired (since %V)", &now, &this->nextUpdate);
+ written += fprintf(stream, "expired (%V ago)", &now, &this->nextUpdate);
}
else if (now > this->nextUpdate - CRL_WARNING_INTERVAL * 60 * 60 * 24)
{
written += fprintf(stream, " not after %#T, ", &this->notAfter, utc);
if (now > this->notAfter)
{
- written += fprintf(stream, "expired (since %V)\n", &now, &this->notAfter);
+ written += fprintf(stream, "expired (%V ago)\n", &now, &this->notAfter);
}
else
{