(pcert_verify): Fix format string.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19647 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-01-03 23:16:00 +00:00
parent 242e22f16c
commit c0ecd4ce02

View File

@@ -591,7 +591,7 @@ pcert_verify(struct verify_options *opt, int argc, char **argv)
p = strptime (opt->time_string, "%Y-%m-%d", &tm); p = strptime (opt->time_string, "%Y-%m-%d", &tm);
if (p == NULL) if (p == NULL)
errx(1, "Failed to parse time %s, need to be on format %Y-%m-%d", errx(1, "Failed to parse time %s, need to be on format %%Y-%%m-%%d",
opt->time_string); opt->time_string);
t = tm2time (tm, 0); t = tm2time (tm, 0);