Browse Source

Merge pull request #1171 from trapexit/srcmounts

Make srcmounts readonly
toggle-debug
trapexit 2 years ago
committed by GitHub
parent
commit
701f88de43
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/branches.cpp
  2. 1
      src/config.cpp

3
src/branches.cpp

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

1
src/config.cpp

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

Loading…
Cancel
Save