Skip to content

Commit

Permalink
Remove newline from debug output in __ni_config_parse_ifconfig_source
Browse files Browse the repository at this point in the history
  • Loading branch information
olafhering committed Nov 6, 2013
1 parent f57b472 commit aa865bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.c
Expand Up @@ -817,7 +817,7 @@ __ni_config_parse_ifconfig_source(ni_string_array_t *sources, xml_node_t *node)
const char **p = __ni_ifconfig_source_types;
for (i = 0; p[i]; i++) {
if (!strncasecmp(attrval, p[i], ni_string_len(p[i]))) {
ni_debug_readwrite("%s: Adding ifconfig %s\n", __func__, attrval);
ni_debug_readwrite("%s: Adding ifconfig %s", __func__, attrval);
ni_string_array_append(sources, attrval);
return TRUE;
}
Expand Down

0 comments on commit aa865bb

Please sign in to comment.