diff options
author | Max Kellermann <max@musicpd.org> | 2018-07-17 21:08:41 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-07-17 21:08:41 +0200 |
commit | 5b192beaa5cb8f007b04bb4c52fc2076c12107c6 (patch) | |
tree | ea316e7beb98cbf6b6870d0d545d89f77425d0c7 /src/input | |
parent | ef38330d748742945a781ef520ffd4de2d1f9301 (diff) |
config/Global: remove ConfigBlock::SetUsed() call, let caller do that
This fixes an old bug which caused the "unused" warnings to be
unreliable; only the first block in the list was marked as being
"used", no matter if it was really used, and the rest was never marked
as "used", suppressing all warnings for them.
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/Init.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/input/Init.cxx b/src/input/Init.cxx index f5b42b00b..12433175b 100644 --- a/src/input/Init.cxx +++ b/src/input/Init.cxx @@ -53,6 +53,8 @@ input_stream_global_init(EventLoop &event_loop) /* the plugin is disabled in mpd.conf */ continue; + block->SetUsed(); + try { if (plugin->init != nullptr) plugin->init(event_loop, *block); |