From 7344a21b9e2099e2ed0e841af21e6044dec41b6a Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 29 Sep 2009 15:53:12 +0200 Subject: [PATCH] netapp plugin: Set the HAVE_VOLUME_USAGE_SIS_SAVED after determining the value. --- src/netapp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/netapp.c b/src/netapp.c index 57fb59de..1e0834b8 100644 --- a/src/netapp.c +++ b/src/netapp.c @@ -1293,6 +1293,7 @@ static int cna_handle_volume_usage_data (const char *hostname, /* {{{ */ if ((sis_saved_reported >> 32) != 0) { /* In case they ever fix this bug. */ v->sis_saved = sis_saved_reported; + v->flags |= HAVE_VOLUME_USAGE_SIS_SAVED; } else { /* really hacky work-around code. {{{ */ uint64_t sis_saved_percent; uint64_t sis_saved_guess; @@ -1336,6 +1337,7 @@ static int cna_handle_volume_usage_data (const char *hostname, /* {{{ */ else v->sis_saved = guess3; } + v->flags |= HAVE_VOLUME_USAGE_SIS_SAVED; } /* }}} end of 32-bit workaround */ } /* for (elem_volume) */ -- 2.11.0