From: Florian Forster Date: Sat, 22 Mar 2008 08:45:41 +0000 (+0100) Subject: src/utils_cache.c: Fix a bug that was introduced by the preceding merge. X-Git-Tag: collectd-4.4.0~81 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7e870aade3c42a21df2ec80fff849a00f1d142ee;p=collectd.git src/utils_cache.c: Fix a bug that was introduced by the preceding merge. --- diff --git a/src/utils_cache.c b/src/utils_cache.c index c471ee28..d1dd0271 100644 --- a/src/utils_cache.c +++ b/src/utils_cache.c @@ -467,12 +467,6 @@ int uc_get_rate_by_name (const char *name, gauge_t **ret_values, size_t *ret_val cache_entry_t *ce = NULL; int status = 0; - if (FORMAT_VL (name, sizeof (name), vl, ds) != 0) - { - ERROR ("uc_get_rate: FORMAT_VL failed."); - return (NULL); - } - pthread_mutex_lock (&cache_lock); if (c_avl_get (cache_tree, name, (void *) &ce) == 0)