Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing bug in flb_plugin.c: key -> value #9666

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixing bug in flb_plugin.c: key -> value
Signed-off-by: Roman Shchekin <[email protected]>
  • Loading branch information
QtRoS authored Nov 28, 2024
commit c9d99fd98c9871804855e103622ba9ce1b74f90c
2 changes: 1 addition & 1 deletion src/flb_plugin.c
Original file line number Diff line number Diff line change
@@ -369,7 +369,7 @@ int flb_plugin_load_config_format(struct flb_cf *cf, struct flb_config *config)
entry = cfl_list_entry(head_e, struct cfl_kvpair, _head);

/* Load plugin with router function */
ret = flb_plugin_load_router(entry->key, config);
ret = flb_plugin_load_router(entry->val->data.as_string, config);
if (ret == -1) {
flb_cf_destroy(cf);
return -1;
Loading