Signed-off-by: Phil Sutter <phil@xxxxxx> --- src/rule.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/rule.c b/src/rule.c index 6a322167b8265..5a6c602505455 100644 --- a/src/rule.c +++ b/src/rule.c @@ -1153,6 +1153,10 @@ static int do_command_delete(struct netlink_ctx *ctx, struct cmd *cmd) static int do_command_export(struct netlink_ctx *ctx, struct cmd *cmd) { struct nftnl_ruleset *rs; + FILE *fp = ctx->octx->output_fp; + + if (!fp) + return 0; do { rs = netlink_dump_ruleset(ctx, &cmd->handle, &cmd->location); @@ -1160,8 +1164,9 @@ static int do_command_export(struct netlink_ctx *ctx, struct cmd *cmd) return -1; } while (rs == NULL); - nftnl_ruleset_fprintf(stdout, rs, cmd->export->format, 0); - fprintf(stdout, "\n"); + nftnl_ruleset_fprintf(fp, rs, cmd->export->format, 0); + fprintf(fp, "\n"); + fflush(fp); nftnl_ruleset_free(rs); return 0; -- 2.13.1 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html