aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-29 01:45:59 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-29 01:46:39 +0200
commit89d0a57e2271db304fdf2ed7d31947c9a3418940 (patch)
treeeb37df0fb3bbcc1415873bf1c679ab552f6c8e8d /include
parentdb519e0d3a9fd5a8c35d66341b37def7be813d89 (diff)
Cleanup: fstree no longer has any use for the block size
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/fstree.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/fstree.h b/include/fstree.h
index b355f06..a63c593 100644
--- a/include/fstree.h
+++ b/include/fstree.h
@@ -98,15 +98,13 @@ struct fstree_t {
Initializing means copying over the default values and creating a root node.
On error, an error message is written to stderr.
- `block_size` is the the data block size for regular files.
-
The string `defaults` can specify default attributes (mode, uid, gid, mtime)
as a comma seperated list of key value paris (<key>=<value>[,...]). The string
is passed to getsubopt and will be altered.
Returns 0 on success.
*/
-int fstree_init(fstree_t *fs, size_t block_size, char *defaults);
+int fstree_init(fstree_t *fs, char *defaults);
void fstree_cleanup(fstree_t *fs);