From 16428372666a32f7493b7b4f949d6ed5c37118ef Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Mon, 24 Mar 2014 16:49:33 +0100 Subject: Use plist_dict_set_item() instead of deprecated plist_dict_insert_item() --- src/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/conf.c') diff --git a/src/conf.c b/src/conf.c index 12194bc..2a90922 100644 --- a/src/conf.c +++ b/src/conf.c @@ -234,13 +234,13 @@ static int internal_set_value(const char *config_file, const char *key, plist_t plist_read_from_filename(&config, config_file); if (!config) { config = plist_new_dict(); - plist_dict_insert_item(config, key, value); + plist_dict_set_item(config, key, value); } else { plist_t n = plist_dict_get_item(config, key); if (n) { plist_dict_remove_item(config, key); } - plist_dict_insert_item(config, key, value); + plist_dict_set_item(config, key, value); remove(config_file); } -- cgit v1.1-32-gdbae