Skip to content

Commit 2d2f119

Browse files
committed
Dummy output: fixed checking an incorrect return code in the configuration parser
1 parent dd29eed commit 2d2f119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/output/dummy/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ config_parse(ipx_ctx_t *ctx, const char *params)
123123
return NULL;
124124
}
125125

126-
if (fds_xml_set_args(parser, args_params) != IPX_OK) {
126+
if (fds_xml_set_args(parser, args_params) != FDS_OK) {
127127
IPX_CTX_ERROR(ctx, "Failed to parse the description of an XML document!", '\0');
128128
fds_xml_destroy(parser);
129129
free(cfg);

0 commit comments

Comments
 (0)