added more bugfixes for list dir dump
Some checks are pending
EIVE/eive-obsw/pipeline/pr-develop Build started...

This commit is contained in:
2023-04-16 02:56:46 +02:00
parent 016fab105e
commit f4fedd20c9
3 changed files with 19 additions and 11 deletions

View File

@ -134,8 +134,8 @@ class ListDirectoryCmdBase {
bool compressionOptionSet() const { return this->compressOption; }
const char* getRepoName(size_t& repoNameLen) const {
return this->repoName;
repoNameLen = this->repoNameLen;
return this->repoName;
}
size_t getBaseSize() {
@ -186,8 +186,8 @@ class ListDirectoryIntoFile : public ListDirectoryCmdBase {
return result;
}
const char* getTargetName(size_t& targetNameLen) const {
return this->targetName;
targetNameLen = this->targetNameLen;
return this->targetName;
}
private: