projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d46c9ca
)
chrony plugin: small cleanup
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sat, 8 Jul 2017 09:52:42 +0000
(11:52 +0200)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sat, 8 Jul 2017 09:52:42 +0000
(11:52 +0200)
src/chrony.c
patch
|
blob
|
history
diff --git
a/src/chrony.c
b/src/chrony.c
index
74dae52
..
6fb369a
100644
(file)
--- a/
src/chrony.c
+++ b/
src/chrony.c
@@
-348,11
+348,10
@@
static char *niptoha(const tChrony_IPAddr *addr, char *p_buf,
}
static void nreftostr(uint32_t nrefid, char *p_buf, size_t p_buf_size) {
- int i, c;
size_t j = 0;
- for (i = 0; i < 4; i++) {
- c = ntohl(nrefid) << i * 8 >> 24;
+ for (i
nt i
= 0; i < 4; i++) {
+
int
c = ntohl(nrefid) << i * 8 >> 24;
if (!isalnum(c) || j + 1 >= p_buf_size)
continue;
p_buf[j++] = c;