| 347 | } |
| 348 | |
| 349 | static inline void merge(string& s, ConfigFile::Parameters::const_iterator& p) |
| 350 | { |
| 351 | if (p->value.hasData()) |
| 352 | { |
| 353 | string attr; |
| 354 | attr.printf("%s=%s\n", p->name.c_str(), p->value.c_str()); |
| 355 | s += attr; |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | void UserManagement::execute(USHORT id) |
| 360 | { |
no test coverage detected