1
0
Fork 0

Merging upstream version 2.11.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 12:28:30 +01:00
parent 6f6d3e85f8
commit 0f2367f2fa
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
533 changed files with 9033 additions and 4835 deletions

View file

@ -57,7 +57,7 @@ static int fdp_configs(int argc, char **argv, struct command *cmd,
return err;
err = validate_output_format(cfg.output_format, &flags);
if (flags < 0)
if (err < 0)
goto out;
if (cfg.raw_binary)
@ -138,7 +138,7 @@ static int fdp_usage(int argc, char **argv, struct command *cmd, struct plugin *
return err;
err = validate_output_format(cfg.output_format, &flags);
if (flags < 0)
if (err < 0)
goto out;
if (cfg.raw_binary)
@ -209,7 +209,7 @@ static int fdp_stats(int argc, char **argv, struct command *cmd, struct plugin *
return err;
err = validate_output_format(cfg.output_format, &flags);
if (flags < 0)
if (err < 0)
goto out;
if (cfg.raw_binary)
@ -270,7 +270,7 @@ static int fdp_events(int argc, char **argv, struct command *cmd, struct plugin
return err;
err = validate_output_format(cfg.output_format, &flags);
if (flags < 0)
if (err < 0)
goto out;
if (cfg.raw_binary)
@ -329,7 +329,7 @@ static int fdp_status(int argc, char **argv, struct command *cmd, struct plugin
return err;
err = validate_output_format(cfg.output_format, &flags);
if (flags < 0)
if (err < 0)
goto out;
if (cfg.raw_binary)