diff options
| author | Don Lewis <truckman@FreeBSD.org> | 2016-05-25 05:20:34 +0000 |
|---|---|---|
| committer | Don Lewis <truckman@FreeBSD.org> | 2016-05-25 05:20:34 +0000 |
| commit | b1b73fc4c9924c4ca2f94b76155a0895373a0b5c (patch) | |
| tree | 5cf3fd5aef73ba59cda5a7f5833aa17866bdc4de /bin/setfacl | |
| parent | 5912ca59b0cb7b87726a656acd1f6e78ed52d83b (diff) | |
Notes
Diffstat (limited to 'bin/setfacl')
| -rw-r--r-- | bin/setfacl/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/setfacl/file.c b/bin/setfacl/file.c index c44f398196fd..e5e19a24773a 100644 --- a/bin/setfacl/file.c +++ b/bin/setfacl/file.c @@ -43,7 +43,7 @@ acl_t get_acl_from_file(const char *filename) { FILE *file; - char buf[BUFSIZ]; + char buf[BUFSIZ+1]; if (filename == NULL) err(1, "(null) filename in get_acl_from_file()"); @@ -61,7 +61,7 @@ get_acl_from_file(const char *filename) err(1, "fopen() %s failed", filename); } - fread(buf, sizeof(buf), (size_t)1, file); + fread(buf, sizeof(buf) - 1, (size_t)1, file); if (ferror(file) != 0) { fclose(file); err(1, "error reading from %s", filename); |
