diff options
author | Jack Lloyd <[email protected]> | 2017-09-16 16:27:57 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-16 16:27:57 -0400 |
commit | f454713cf14c68929975fba07940284cac902a84 (patch) | |
tree | 3b56008764fef3b473fb2a10976f14452e7ebaf1 /src/cli | |
parent | 9a7d09ee2b026b0819cad09c8ec4f690d62c1c4e (diff) |
Correct output of `botan config libs`
It output -lbotan-2.x instead of -lbotan-2
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/utils.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cli/utils.cpp b/src/cli/utils.cpp index 0fb939066..c8b23cb6d 100644 --- a/src/cli/utils.cpp +++ b/src/cli/utils.cpp @@ -141,8 +141,7 @@ class Config_Info final : public Command } else if(arg == "libs") { - output() << "-lbotan-" << Botan::version_major() << "." << Botan::version_minor() - << " " << BOTAN_LIB_LINK << "\n"; + output() << "-lbotan-" << Botan::version_major() << " " << BOTAN_LIB_LINK << "\n"; } else { |