We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e494b54 commit c8882b1Copy full SHA for c8882b1
NanaBox/ConfigurationManager.cpp
@@ -380,16 +380,14 @@ std::string NanaBox::MakeHcsConfiguration(
380
}
381
382
{
383
- const std::uint32_t Plan9ShareFlagsReadOnly = 0x00000001;
384
-
385
const std::uint32_t Plan9SharePort = 50001;
386
387
nlohmann::json Current;
388
Current["Name"] = ShareName;
389
Current["AccessName"] = ShareName;
390
Current["Path"] = SharePath;
391
Current["Port"] = Plan9SharePort;
392
- Current["Flags"] = Plan9ShareFlagsReadOnly;
+ Current["Flags"] = NanaBox::Plan9ShareFlags::ReadOnly;
393
394
nlohmann::json SharedFolders;
395
SharedFolders.push_back(Current);
0 commit comments