From 9252425bdf26b5a5e2fa977690963864fd262dbb Mon Sep 17 00:00:00 2001 From: DcruBro Date: Mon, 10 Nov 2025 21:00:37 +0100 Subject: [PATCH] Fix licensing printout on start --- src/client/main.cpp | 2 +- src/server/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/main.cpp b/src/client/main.cpp index 190ebf9..1aff47b 100644 --- a/src/client/main.cpp +++ b/src/client/main.cpp @@ -51,7 +51,7 @@ int main(int argc, char** argv) { try { log("ColumnLynx Client, Version " + getVersion()); - log("This software is licensed under the GPLv3. See LICENSE for details."); + log("This software is licensed under the GPLv2 only OR the GPLv3. See LICENSE for details."); LibSodiumWrapper sodiumWrapper = LibSodiumWrapper(); diff --git a/src/server/main.cpp b/src/server/main.cpp index b921492..b4c85fd 100644 --- a/src/server/main.cpp +++ b/src/server/main.cpp @@ -37,7 +37,7 @@ int main(int argc, char** argv) { sigaction(SIGTERM, &action, nullptr);*/ log("ColumnLynx Server, Version " + getVersion()); - log("This software is licensed under the GPLv3. See LICENSE for details."); + log("This software is licensed under the GPLv2 only OR the GPLv3. See LICENSE for details."); // Generate a temporary keypair, replace with actual CA signed keys later (Note, these are stored in memory) LibSodiumWrapper sodiumWrapper = LibSodiumWrapper();