From 75b6051b7ae3aade1f06c8eb2bb915add4f317d1 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Mon, 28 Jun 2021 16:39:48 +0200 Subject: Change: move sensitive information to secrets.cfg and private information to private.cfg We often ask people for their openttd.cfg, which now includes their passwords, usernames, etc. It is easy for people to overlook this, unwillingly sharing information they shouldn't. By splitting this information over either private.cfg or secrets.cfg, we make it more obvious they shouldn't be sharing those files, and hint to what is inside them. --- src/ini_type.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ini_type.h') diff --git a/src/ini_type.h b/src/ini_type.h index 882ccc789..607e8940b 100644 --- a/src/ini_type.h +++ b/src/ini_type.h @@ -47,6 +47,7 @@ struct IniGroup { ~IniGroup(); IniItem *GetItem(const std::string &name, bool create); + void RemoveItem(const std::string &name); void Clear(); }; -- cgit v1.2.3-54-g00ecf