This is an automated email from the ASF dual-hosted git repository.
masaori pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new dcb0c8e2c Add a hyphen between PACKAGE_VERSION and BUILD_NUMBER (#9577)
dcb0c8e2c is described below
commit dcb0c8e2c65f4fd84efe73983cbb2509e5e0d9ff
Author: Masaori Koshiba <[email protected]>
AuthorDate: Tue Apr 4 07:09:40 2023 +0900
Add a hyphen between PACKAGE_VERSION and BUILD_NUMBER (#9577)
---
src/traffic_server/traffic_server.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/traffic_server/traffic_server.cc
b/src/traffic_server/traffic_server.cc
index 14e249998..d14947505 100644
--- a/src/traffic_server/traffic_server.cc
+++ b/src/traffic_server/traffic_server.cc
@@ -1748,7 +1748,7 @@ main(int /* argc ATS_UNUSED */, const char **argv)
// Before accessing file system initialize Layout engine
Layout::create();
// Let's be clear on what exactly is starting up.
- printf("Traffic Server " PACKAGE_VERSION BUILD_NUMBER " " __DATE__ " "
__TIME__ " " BUILD_MACHINE "\n");
+ printf("Traffic Server " PACKAGE_VERSION "-" BUILD_NUMBER " " __DATE__ " "
__TIME__ " " BUILD_MACHINE "\n");
chdir_root(); // change directory to the install root of traffic server.
std::sort(argument_descriptions, argument_descriptions +
countof(argument_descriptions),