From f8103d800d8136d9f19fc880497741da859ff830 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Mon, 17 Apr 2006 15:59:04 +0000 Subject: [PATCH] vos-date-parse-errmsg-20060417 FIXES 30218 use the correct index value when printing the invalid date string --- src/volser/vos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volser/vos.c b/src/volser/vos.c index 616de2620..78032164a 100644 --- a/src/volser/vos.c +++ b/src/volser/vos.c @@ -5578,7 +5578,7 @@ Sizes(as) code = ktime_DateToInt32(as->parms[4].items->data, &fromdate); if (code) { fprintf(STDERR, "vos: failed to parse date '%s' (error=%d))\n", - as->parms[1].items->data, code); + as->parms[4].items->data, code); return code; } } -- 2.39.5