Sets UID and GID to be used in the tar file
| 115 | |
| 116 | //! Sets UID and GID to be used in the tar file |
| 117 | void SetUIDAndGID(int uid_, int gid_) |
| 118 | { |
| 119 | this->Uid.Set(uid_); |
| 120 | this->Gid.Set(gid_); |
| 121 | } |
| 122 | |
| 123 | //! Clears UID and GID to be used in the tar file - default is used instead |
| 124 | void ClearUIDAndGID() |
no test coverage detected