diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-20 01:12:03 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-20 01:12:03 +0000 |
commit | a11ea13e5c634d839bcfed7e9cd4c2d6da0fcae8 (patch) | |
tree | 1a4d4d1311b6be5560ac172fa0372fbeb25d1c56 /libdiskfs | |
parent | a56b04da105a54538a73840ea61a668719ee327a (diff) |
(diskfs_S_fsys_set_options):
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/fsys-options.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libdiskfs/fsys-options.c b/libdiskfs/fsys-options.c index d5057814..ae81e0eb 100644 --- a/libdiskfs/fsys-options.c +++ b/libdiskfs/fsys-options.c @@ -57,7 +57,11 @@ diskfs_S_fsys_set_options (fsys_t fsys, return EOPNOTSUPP; if (do_children) - diskfs_node_iterate (helper); + { + ret = diskfs_node_iterate (helper); + if (ret) + return ret; + } argz_extract (data, len, argv); |