diff options
Diffstat (limited to 'cmdline.h')
-rw-r--r-- | cmdline.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -63,6 +63,15 @@ struct cmdline { /** Colored stderr. */ CFILE *cerr; + /** User table. */ + struct bfs_users *users; + /** The error that occurred parsing the user table, if any. */ + int users_error; + /** Group table. */ + struct bfs_groups *groups; + /** The error that occurred parsing the group table, if any. */ + int groups_error; + /** Table of mounted file systems. */ struct bfs_mtab *mtab; /** The error that occurred parsing the mount table, if any. */ |