From a4f6139ee6e452d79f53d36e4b061e5b363b0547 Mon Sep 17 00:00:00 2001 From: Joaquim Date: Sun, 17 May 2026 16:26:05 +0100 Subject: [PATCH] gmtset: fix lowercase 't' when it should be 'T' Fix #9023 --- src/gmt_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gmt_init.c b/src/gmt_init.c index acef781faf7..ecead3689ef 100644 --- a/src/gmt_init.c +++ b/src/gmt_init.c @@ -12538,7 +12538,7 @@ unsigned int gmtlib_setparameter (struct GMT_CTRL *GMT, const char *keyword, cha /* TIME GROUP */ case GMTCASE_TIME_EPOCH: - strncpy (GMT->current.setting.time_system.epoch, lower_value, GMT_LEN64-1); + strncpy (GMT->current.setting.time_system.epoch, value, GMT_LEN64-1); (void) gmt_init_time_system_structure (GMT, &GMT->current.setting.time_system); break; case GMTCASE_TIME_IS_INTERVAL: