From 4784273195dbf4a8efb6bd6480545e532b07a4fc Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 13 May 2014 16:59:30 +0100 Subject: fix typo in nsc_time_strptime --- utils/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/utils.c b/utils/utils.c index f2f69e2ea..de0de0b72 100644 --- a/utils/utils.c +++ b/utils/utils.c @@ -579,7 +579,7 @@ char *nsc_time_strptime(const char *s, const char *format, struct tm *tm) return NULL; } - esecs = (time_t)strtoll(a, &endptr, 10); + esecs = (time_t)strtoll(s, &endptr, 10); gtm = gmtime(esecs); *tm = *gtm; -- cgit v1.2.3