Skip to content
This repository was archived by the owner on Oct 26, 2025. It is now read-only.
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
2 changes: 1 addition & 1 deletion src/conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ conf_write_impl(const conf_t *conf, void *fp, size_t bufsz,
bool_t
conf_write(const conf_t *conf, FILE *fp)
{
return (conf_write_impl(conf, fp, 0, B_FALSE, B_FALSE));
return (conf_write_impl(conf, fp, 0, B_FALSE, B_FALSE) >= 0);
}

/**
Expand Down