projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d36acdd
)
apcups plugin: Handle "END APC" lines correctly and stop reading.
author
Florian Forster
<octo@collectd.org>
Mon, 8 Jun 2015 10:34:41 +0000
(12:34 +0200)
committer
Florian Forster
<octo@collectd.org>
Mon, 8 Jun 2015 10:34:41 +0000
(12:34 +0200)
Fixes: #617
src/apcups.c
patch
|
blob
|
history
diff --git
a/src/apcups.c
b/src/apcups.c
index
7738653
..
66fe45e
100644
(file)
--- a/
src/apcups.c
+++ b/
src/apcups.c
@@
-325,6
+325,9
@@
static int apc_query_server (char const *node, char const *service,
printf ("net_recv = `%s';\n", recvline);
#endif /* if APCMAIN */
+ if (strncmp ("END APC", recvline, strlen ("END APC")) == 0)
+ break;
+
toksaveptr = NULL;
tokptr = strtok_r (recvline, " :\t", &toksaveptr);
while (tokptr != NULL)