summaryrefslogtreecommitdiffstats
path: root/src/lib/load_plugin_settings.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/load_plugin_settings.c')
-rw-r--r--src/lib/load_plugin_settings.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/load_plugin_settings.c b/src/lib/load_plugin_settings.c
index 0f389069..1e6b31e7 100644
--- a/src/lib/load_plugin_settings.c
+++ b/src/lib/load_plugin_settings.c
@@ -35,7 +35,6 @@ bool load_conf_file(const char *pPath, map_string_h *settings, bool skipKeysWith
while ((line = xmalloc_fgetline(fp)) != NULL)
{
unsigned ii;
- bool is_value = false;
bool valid = false;
bool in_quote = false;
/* We are reusing line buffer to form temporary
@@ -61,7 +60,6 @@ bool load_conf_file(const char *pPath, map_string_h *settings, bool skipKeysWith
}
if (line[ii] == '=' && !in_quote)
{
- is_value = true;
valid = true;
*cur++ = '\0'; /* terminate key */
value = cur; /* remember where value starts */