aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-07-20 21:33:10 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-07-20 21:33:10 +0200
commit87a366098031e8818441f6d18e4e5dcb33a6d0e7 (patch)
treed614ac0c73024b22f5f34e8039c20662cc024a93
parentf7283ae8cb5bdb7f25b1fc5d9e929297e9d267c6 (diff)
Fix version printing bug
-rw-r--r--bbot/agent/agent.cxx2
-rw-r--r--bbot/worker/worker.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx
index ff697db..1ef6d16 100644
--- a/bbot/agent/agent.cxx
+++ b/bbot/agent/agent.cxx
@@ -827,7 +827,7 @@ try
{
cout << "bbot-agent " << BBOT_VERSION_ID << endl
<< "libbbot " << LIBBBOT_VERSION_ID << endl
- << "libbpkg " << LIBBBOT_VERSION_ID << endl
+ << "libbpkg " << LIBBPKG_VERSION_ID << endl
<< "libbutl " << LIBBUTL_VERSION_ID << endl
<< "Copyright (c) 2014-2017 Code Synthesis Ltd" << endl
<< "TBC; All rights reserved" << endl;
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx
index a078498..67bbebe 100644
--- a/bbot/worker/worker.cxx
+++ b/bbot/worker/worker.cxx
@@ -568,7 +568,7 @@ try
{
cout << "bbot-worker " << BBOT_VERSION_ID << endl
<< "libbbot " << LIBBBOT_VERSION_ID << endl
- << "libbpkg " << LIBBBOT_VERSION_ID << endl
+ << "libbpkg " << LIBBPKG_VERSION_ID << endl
<< "libbutl " << LIBBUTL_VERSION_ID << endl
<< "Copyright (c) 2014-2017 Code Synthesis Ltd" << endl
<< "TBC; All rights reserved" << endl;