X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fcollectd-nagios.c;h=06298494550f8bbf56a1433bb970b0fe73a2a4f1;hp=33580f9e4758cc990ba6bf12e8eccdbfcf2e13bd;hb=48efd3deb4c9139fd060ff3d289896e9031bcc7c;hpb=ec6deefb347fad727b293995e8d3341a898c9812 diff --git a/src/collectd-nagios.c b/src/collectd-nagios.c index 33580f9e..06298494 100644 --- a/src/collectd-nagios.c +++ b/src/collectd-nagios.c @@ -527,7 +527,7 @@ static int do_check(lcc_connection_t *connection) { int status; snprintf(ident_str, sizeof(ident_str), "%s/%s", hostname_g, value_string_g); - ident_str[sizeof(ident_str) - 1] = 0; + ident_str[sizeof(ident_str) - 1] = '\0'; status = lcc_string_to_identifier(connection, &ident, ident_str); if (status != 0) { @@ -652,7 +652,7 @@ int main(int argc, char **argv) { } snprintf(address, sizeof(address), "unix:%s", socket_file_g); - address[sizeof(address) - 1] = 0; + address[sizeof(address) - 1] = '\0'; connection = NULL; status = lcc_connect(address, &connection);