diff options
author | Daniel Mack <github@zonque.org> | 2015-07-06 14:22:23 -0400 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-07-06 14:22:23 -0400 |
commit | f767522a65a03b164f30d6b9f089000ce5bcb730 (patch) | |
tree | 535c9095676bafc970b607ece17577a89c9e1bd7 /src/basic/fileio.c | |
parent | 5541c88977e63215e74b7517fb33cb27e5a04f17 (diff) | |
parent | 15dee3f07c646fd345b0aa30c6566071b3365db7 (diff) |
Merge pull request #495 from poettering/forwarding-fix
networkd: be more defensive when writing to ipv4/ipv6 forwarding sett…
Diffstat (limited to 'src/basic/fileio.c')
-rw-r--r-- | src/basic/fileio.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/basic/fileio.c b/src/basic/fileio.c index ff6b1a7ed7..00fb6f8b5c 100644 --- a/src/basic/fileio.c +++ b/src/basic/fileio.c @@ -134,6 +134,17 @@ int read_one_line_file(const char *fn, char **line) { return 0; } +int verify_one_line_file(const char *fn, const char *line) { + _cleanup_free_ char *value = NULL; + int r; + + r = read_one_line_file(fn, &value); + if (r < 0) + return r; + + return streq(value, line); +} + int read_full_stream(FILE *f, char **contents, size_t *size) { size_t n, l; _cleanup_free_ char *buf = NULL; |