diff --git a/src/clinkaheadcli.c b/src/clinkaheadcli.c index 2f6ba7f551a2151344c59f9dea074addedebc2e5..1232a41f9f371162e6734887b0b2d8205cb3fb4b 100644 --- a/src/clinkaheadcli.c +++ b/src/clinkaheadcli.c @@ -4,7 +4,7 @@ int main(void) { int status = 0; // last function return value - printf("CaosDB C client (libcaosdb %d.%d.%d)\nWe don't miss the H of caos.\n\n", + printf("LinkAhead C client (liblinkahead %d.%d.%d)\n\n", LIBLINKAHEAD_VERSION_MAJOR, LIBLINKAHEAD_VERSION_MINOR, LIBLINKAHEAD_VERSION_PATCH); linkahead_connection_connection connection; diff --git a/src/cxxlinkaheadcli.cpp b/src/cxxlinkaheadcli.cpp index 69730fa7502a0982f04ea1fc6314ba9c5d9fdfc0..d7d6c6c6d6bf5505c44bd8384e76242aa5786ef8 100644 --- a/src/cxxlinkaheadcli.cpp +++ b/src/cxxlinkaheadcli.cpp @@ -20,7 +20,7 @@ * */ -// A simple caosdb client +// A simple linkahead client #include "linkahead/connection.h" // for Connection, ConnectionManager #include "linkahead/constants.h" // for LIBLINKAHEAD_VERSION_MINOR, LIBLINKAHEAD_V... #include "linkahead/entity.h" // for Entity @@ -43,10 +43,9 @@ const auto logger_name = "liblinkahead"; auto main() -> int { - std::cout << "CaosDB C++ client (libcaosdb " << linkahead::LIBLINKAHEAD_VERSION_MINOR << "." + std::cout << "LinkAhead C++ client (liblinkahead " << linkahead::LIBLINKAHEAD_VERSION_MINOR << "." << linkahead::LIBLINKAHEAD_VERSION_MINOR << "." << linkahead::LIBLINKAHEAD_VERSION_PATCH - << ")\n" - << "We don't miss the H of caos.\n" + << ")\n" << std::endl; try {