From e26f574a1a8011e4301737b8900a3aa443e9f248 Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Tue, 3 Sep 2024 09:28:42 +0200 Subject: [PATCH] Rename caosdb in cli clients --- src/clinkaheadcli.c | 2 +- src/cxxlinkaheadcli.cpp | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/clinkaheadcli.c b/src/clinkaheadcli.c index 2f6ba7f..1232a41 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 69730fa..d7d6c6c 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 { -- GitLab