diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-06-30 21:59:32 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-06-30 21:59:32 +0000 |
commit | 9cb9fa49f083df89db933b85695e902be6d26cf1 (patch) | |
tree | df637fe19c9224c523d976750b0089d7834a9844 /ufs/main.c | |
parent | 3d78237de1e2eb1493079f5ede152d2433a10c70 (diff) |
Mon Jun 30 17:38:57 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* main.c (main): If the store cannot be made writable, then set
diskfs_hard_readonly and diskfs_readonly.
Diffstat (limited to 'ufs/main.c')
-rw-r--r-- | ufs/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -205,6 +205,9 @@ main (int argc, char **argv) log2_dev_blocks_per_dev_bsize++; log2_dev_blocks_per_dev_bsize -= store->log2_block_size; + if (store->flags & STORE_HARD_READONLY) + diskfs_readonly = diskfs_hard_readonly = 1; + /* Map the entire disk. */ create_disk_pager (); |