projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aedf67e
)
Ceph: fix shadowing issue
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Thu, 3 Mar 2016 21:13:37 +0000
(22:13 +0100)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Thu, 3 Mar 2016 21:13:37 +0000
(22:13 +0100)
src/ceph.c
patch
|
blob
|
history
diff --git
a/src/ceph.c
b/src/ceph.c
index
251def9
..
9c53a3e
100644
(file)
--- a/
src/ceph.c
+++ b/
src/ceph.c
@@
-1097,7
+1097,7
@@
static int cconn_connect(struct cconn *io)
fd = socket(PF_UNIX, SOCK_STREAM, 0);
if(fd < 0)
{
-
int
err = -errno;
+ err = -errno;
ERROR("ceph plugin: cconn_connect: socket(PF_UNIX, SOCK_STREAM, 0) "
"failed: error %d", err);
return err;
@@
-1546,7
+1546,7
@@
static int cconn_main_loop(uint32_t request_type)
}
else
{
-
int
ret = cconn_handle_event(io);
+ ret = cconn_handle_event(io);
if(ret)
{
WARNING("ceph plugin: cconn_handle_event(name=%s,"