From 01042aec2de6cebec47a57c28e75d1bbc4c81b7a Mon Sep 17 00:00:00 2001 From: Emanuele Giaquinta Date: Wed, 14 Jan 2009 17:19:42 +0000 Subject: [PATCH] Fix typos. git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4984 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/lib-config/iconfig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib-config/iconfig.h b/src/lib-config/iconfig.h index f3f5db5c..06696b53 100644 --- a/src/lib-config/iconfig.h +++ b/src/lib-config/iconfig.h @@ -125,7 +125,7 @@ CONFIG_NODE *config_node_traverse(CONFIG_REC *rec, const char *section, int crea /* Get the value of keys `key' and `key_value' and put them to `ret_key' and `ret_value'. Returns -1 if not found. */ int config_node_get_keyvalue(CONFIG_NODE *node, const char *key, const char *value_key, char **ret_key, char **ret_value); -/* Return all values from from the list `node' in a g_strsplit() array */ +/* Return all values from the list `node' in a g_strsplit() array */ char **config_node_get_list(CONFIG_NODE *node); /* Add all values in `array' to `node' */ void config_node_add_list(CONFIG_REC *rec, CONFIG_NODE *node, char **array); @@ -137,7 +137,7 @@ int config_node_get_bool(CONFIG_NODE *parent, const char *key, int def); /* * key != NULL && value == NULL * remove node with key 'key', equivalent to - * config_node_remove(rec, parent, config_node_find(rec, parent, key)) + * config_node_remove(rec, parent, config_node_find(parent, key)) * key == NULL && value != NULL * create a new node with type NODE_TYPE_VALUE and value 'value' * key != NULL && value != NULL