From c0ecd4ce02b722d717bd0183db2311f66612e9f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 3 Jan 2007 23:16:00 +0000 Subject: [PATCH] (pcert_verify): Fix format string. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19647 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/hxtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hx509/hxtool.c b/lib/hx509/hxtool.c index ac5235bdd..0469a7abb 100644 --- a/lib/hx509/hxtool.c +++ b/lib/hx509/hxtool.c @@ -591,7 +591,7 @@ pcert_verify(struct verify_options *opt, int argc, char **argv) p = strptime (opt->time_string, "%Y-%m-%d", &tm); 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); t = tm2time (tm, 0);