diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2009-01-14 17:19:42 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2009-01-14 17:19:42 +0000 |
commit | 01042aec2de6cebec47a57c28e75d1bbc4c81b7a (patch) | |
tree | 119b38dae5895c9b09d22362b0f9a7630879254a /src/lib-config | |
parent | 2f06196ffbb471c6214b9e35cb1430c19b5ec6cc (diff) | |
download | irssi-01042aec2de6cebec47a57c28e75d1bbc4c81b7a.zip |
Fix typos.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4984 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/lib-config')
-rw-r--r-- | src/lib-config/iconfig.h | 4 |
1 files 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 |