X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fceph.c;fp=src%2Fceph.c;h=26cf215553a1d20116b215a0db3d92ef9429f67f;hb=a96e1c4a5e2c0244607b9da71175c2a12a4451fd;hp=c112af06e01c352c546d482bdf804e6faa245e5c;hpb=191535ec13cc513070b8e052b97659ff89c6cd88;p=collectd.git diff --git a/src/ceph.c b/src/ceph.c index c112af06..26cf2155 100644 --- a/src/ceph.c +++ b/src/ceph.c @@ -251,7 +251,7 @@ static int ceph_cb_boolean(void *ctx, int bool_val) { return CEPH_CB_CONTINUE; } if (dest_size > dest_len) { \ sstrncpy((dest) + dest_len, (src), dest_size - dest_len); \ } \ - (dest)[dest_size - 1] = 0; \ + (dest)[dest_size - 1] = '\0'; \ } while (0) static int ceph_cb_number(void *ctx, const char *number_val, @@ -350,7 +350,7 @@ static int ceph_cb_map_key(void *ctx, const unsigned char *key, } memmove(state->key, key, sz - 1); - state->key[sz - 1] = 0; + state->key[sz - 1] = '\0'; return CEPH_CB_CONTINUE; }