diff options
author | Mike Buland <mike@xagasoft.com> | 2024-10-01 12:10:02 -0700 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2024-10-01 12:10:02 -0700 |
commit | 7487eea1b802bf0f45afcef5807251049b034dd8 (patch) | |
tree | c00f87c3a982f8b43fd9e16444eb2df8e0079710 /src/unstable/myriadfs.cpp | |
parent | 03cafb600101c4bc659521b833a1f3a8c56938be (diff) | |
download | libbu++-7487eea1b802bf0f45afcef5807251049b034dd8.tar.gz libbu++-7487eea1b802bf0f45afcef5807251049b034dd8.tar.bz2 libbu++-7487eea1b802bf0f45afcef5807251049b034dd8.tar.xz libbu++-7487eea1b802bf0f45afcef5807251049b034dd8.zip |
More bug fixes
Diffstat (limited to 'src/unstable/myriadfs.cpp')
-rw-r--r-- | src/unstable/myriadfs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unstable/myriadfs.cpp b/src/unstable/myriadfs.cpp index ab9ca74..2eda0be 100644 --- a/src/unstable/myriadfs.cpp +++ b/src/unstable/myriadfs.cpp | |||
@@ -574,7 +574,7 @@ int32_t Bu::MyriadFs::allocInode( uint16_t uPerms, uint32_t uSpecial ) | |||
574 | case typeSymLink: | 574 | case typeSymLink: |
575 | { | 575 | { |
576 | Bu::MyriadStream ms = mStore.create( | 576 | Bu::MyriadStream ms = mStore.create( |
577 | Bu::Myriad::Create | 577 | Bu::Myriad::Read |
578 | ); | 578 | ); |
579 | rs.uStreamIndex = ms.getId(); | 579 | rs.uStreamIndex = ms.getId(); |
580 | } | 580 | } |
@@ -583,7 +583,7 @@ int32_t Bu::MyriadFs::allocInode( uint16_t uPerms, uint32_t uSpecial ) | |||
583 | case typeDir: | 583 | case typeDir: |
584 | { | 584 | { |
585 | Bu::MyriadStream ms = mStore.create( | 585 | Bu::MyriadStream ms = mStore.create( |
586 | Bu::Myriad::Create | 586 | Bu::Myriad::Read |
587 | ); | 587 | ); |
588 | rs.uStreamIndex = ms.getId(); | 588 | rs.uStreamIndex = ms.getId(); |
589 | } | 589 | } |