From 33dca4560fc354b87c7e59ac4e4a6bc917497f85 Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Debian Linux)" <rob@synchro.net> Date: Thu, 7 Mar 2024 00:05:58 -0800 Subject: [PATCH] Include just date in the program-ID (as before) the switch for build->Git date --- src/sbbs3/msg_id.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sbbs3/msg_id.c b/src/sbbs3/msg_id.c index 4307adefbd..9fcd262148 100644 --- a/src/sbbs3/msg_id.c +++ b/src/sbbs3/msg_id.c @@ -246,9 +246,9 @@ char* msg_program_id(char* pid, size_t maxlen) char compiler[64]; DESCRIBE_COMPILER(compiler); - snprintf(pid, maxlen, "%.10s %s%c-%s %s/%s %s %s" + snprintf(pid, maxlen, "%.10s %s%c-%s %s/%s %.10s %s" ,VERSION_NOTICE,VERSION,REVISION,PLATFORM_DESC ,GIT_BRANCH, GIT_HASH - ,GIT_DATE,compiler); + ,GIT_DATE, compiler); return pid; } -- GitLab