From b9294d6215cc876b28144143d377a261c739f8e1 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sun, 22 Feb 2026 12:08:04 -0500 Subject: [PATCH] make not be stupid error more clear; --- src/fne/HostFNE.cpp | 2 +- src/host/Host.Config.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fne/HostFNE.cpp b/src/fne/HostFNE.cpp index f95d76df..5d0237c3 100644 --- a/src/fne/HostFNE.cpp +++ b/src/fne/HostFNE.cpp @@ -345,7 +345,7 @@ bool HostFNE::readParams() bool iAgreeNotToBeStupid = m_conf["iAgreeNotToBeStupid"].as(false); if (!iAgreeNotToBeStupid) { LogError(LOG_HOST, HIGHLY_UNNECESSARY_DISCLAIMER_FOR_THE_MENTAL); - LogError(LOG_HOST, "You must agree to software license terms, and not to be stupid to use this software."); + LogError(LOG_HOST, "You must agree to software license terms, and not to be stupid to use this software. Please set 'iAgreeNotToBeStupid' in the configuration file properly."); return false; } diff --git a/src/host/Host.Config.cpp b/src/host/Host.Config.cpp index a9d168a9..983328ef 100644 --- a/src/host/Host.Config.cpp +++ b/src/host/Host.Config.cpp @@ -62,7 +62,7 @@ bool Host::readParams() bool iAgreeNotToBeStupid = m_conf["iAgreeNotToBeStupid"].as(false); if (!iAgreeNotToBeStupid) { LogError(LOG_HOST, HIGHLY_UNNECESSARY_DISCLAIMER_FOR_THE_MENTAL); - LogError(LOG_HOST, "You must agree to software license terms, and not to be stupid to use this software."); + LogError(LOG_HOST, "You must agree to software license terms, and not to be stupid to use this software. Please set 'iAgreeNotToBeStupid' in the configuration file properly."); return false; }