From c8245a591fa6efc50e206cd49dabd1df03360236 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Sun, 10 May 2020 23:47:43 -0300 Subject: [PATCH] Version string should use timestamp value. --- src/core/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/util.c b/src/core/util.c index 2effcb4..dfe85e8 100644 --- a/src/core/util.c +++ b/src/core/util.c @@ -367,7 +367,7 @@ LIB3270_EXPORT const char * lib3270_get_revision(void) LIB3270_EXPORT char * lib3270_get_version_info(void) { - return lib3270_strdup_printf("%s version %s-%d build %s",PACKAGE_NAME,PACKAGE_VERSION,PACKAGE_RELEASE,RPQ_REVISION); + return lib3270_strdup_printf("%s version %s-%d build %s",PACKAGE_NAME,PACKAGE_VERSION,PACKAGE_RELEASE,RPQ_TIMESTAMP_VALUE); } void lib3270_popup_an_errno(H3270 *hSession, int errn, const char *fmt, ...) -- libgit2 0.21.2