| 168 | MountOptions mnt_opts; |
| 169 | |
| 170 | void parseFlags(const std::string& str) { |
| 171 | std::istringstream s(str); |
| 172 | std::string opt; |
| 173 | while (std::getline(s, opt, ',')) { |
| 174 | auto it = mountFlags.find(opt); |
| 175 | if (it != mountFlags.end()) |
| 176 | mnt_flags |= it->second; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | void parsePropagation(const std::string& pg) { |
| 181 | if (pg.find("master:") == 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected