Fix persisted monitors not working

This prevented persisted monitors from being deleted after a restart.
This commit is contained in:
Markus Mäkelä
2017-01-03 20:18:15 +02:00
parent 2a4714500f
commit 66430a3584
2 changed files with 20 additions and 1 deletions

View File

@ -102,6 +102,7 @@ typedef struct config_context
char *object; /**< The name of the object being configured */
CONFIG_PARAMETER *parameters; /**< The list of parameter values */
void *element; /**< The element created from the data */
bool was_persisted; /**< True if this object was persisted */
struct config_context *next; /**< Next pointer in the linked list */
} CONFIG_CONTEXT;