Merge pull request #1171 from trapexit/srcmounts

Make srcmounts readonly
This commit is contained in:
trapexit 2023-04-05 22:31:29 -04:00 committed by GitHub
commit 701f88de43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -424,7 +424,8 @@ SrcMounts::SrcMounts(Branches &b_)
int int
SrcMounts::from_string(const std::string &s_) SrcMounts::from_string(const std::string &s_)
{ {
return _branches.from_string(s_); // return _branches.from_string(s_);
return 0;
} }
std::string std::string

View File

@ -68,6 +68,7 @@ namespace l
IFERT("read-thread-count"); IFERT("read-thread-count");
IFERT("readdirplus"); IFERT("readdirplus");
IFERT("scheduling-priority"); IFERT("scheduling-priority");
IFERT("srcmounts");
IFERT("threads"); IFERT("threads");
IFERT("version"); IFERT("version");