summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fb064ef)
raw | patch | inline | side by side (parent: fb064ef)
author | Florian Forster <octo@collectd.org> | |
Thu, 14 Jun 2012 12:48:15 +0000 (14:48 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Thu, 14 Jun 2012 12:48:15 +0000 (14:48 +0200) |
src/oracle.c | patch | blob | history |
diff --git a/src/oracle.c b/src/oracle.c
index 05213e010feb91e715c59dfb3c072069494ac95f..86643ca3b09d608ca9272eec0b9d462c063d8f1f 100644 (file)
--- a/src/oracle.c
+++ b/src/oracle.c
* </Plugin>
*/
-static int o_config_set_string (char **ret_string, /* {{{ */
- oconfig_item_t *ci)
-{
- char *string;
-
- if ((ci->values_num != 1)
- || (ci->values[0].type != OCONFIG_TYPE_STRING))
- {
- WARNING ("oracle plugin: The `%s' config option "
- "needs exactly one string argument.", ci->key);
- return (-1);
- }
-
- string = strdup (ci->values[0].value.string);
- if (string == NULL)
- {
- ERROR ("oracle plugin: strdup failed.");
- return (-1);
- }
-
- if (*ret_string != NULL)
- free (*ret_string);
- *ret_string = string;
-
- return (0);
-} /* }}} int o_config_set_string */
-
static int o_config_add_database (oconfig_item_t *ci) /* {{{ */
{
o_database_t *db;
db->username = NULL;
db->password = NULL;
- status = o_config_set_string (&db->name, ci);
+ status = cf_util_get_string (ci, &db->name);
if (status != 0)
{
sfree (db);
oconfig_item_t *child = ci->children + i;
if (strcasecmp ("ConnectID", child->key) == 0)
- status = o_config_set_string (&db->connect_id, child);
+ status = cf_util_get_string (child, &db->connect_id);
else if (strcasecmp ("Host", child->key) == 0)
- status = o_config_set_string (&db->host, child);
+ status = cf_util_get_string (child, &db->host);
else if (strcasecmp ("Username", child->key) == 0)
- status = o_config_set_string (&db->username, child);
+ status = cf_util_get_string (child, &db->username);
else if (strcasecmp ("Password", child->key) == 0)
- status = o_config_set_string (&db->password, child);
+ status = cf_util_get_string (child, &db->password);
else if (strcasecmp ("Query", child->key) == 0)
status = udb_query_pick_from_list (child, queries, queries_num,
&db->queries, &db->queries_num);