Skip to content

Commit

Permalink
bsr: added default initializer to RestoreBootstrapRecord
Browse files Browse the repository at this point in the history
  • Loading branch information
franku authored and arogge committed Jun 28, 2019
1 parent fe746ca commit ca38ba1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions core/src/dird/bsr.h
Expand Up @@ -57,14 +57,14 @@ struct RestoreBootstrapRecordFileIndex {
* on which the Job is stored to the BootStrapRecord.
*/
struct RestoreBootstrapRecord {
RestoreBootstrapRecord* next; /**< next JobId */
JobId_t JobId; /**< JobId this bsr */
uint32_t VolSessionId;
uint32_t VolSessionTime;
int VolCount; /**< Volume parameter count */
VolumeParameters* VolParams; /**< Volume, start/end file/blocks */
RestoreBootstrapRecordFileIndex* fi; /**< File indexes this JobId */
char* fileregex; /**< Only restore files matching regex */
RestoreBootstrapRecord* next = nullptr; /**< next JobId */
JobId_t JobId = 0; /**< JobId this bsr */
uint32_t VolSessionId = 0;
uint32_t VolSessionTime = 0;
int VolCount = 0; /**< Volume parameter count */
VolumeParameters* VolParams = nullptr; /**< Volume, start/end file/blocks */
RestoreBootstrapRecordFileIndex* fi = nullptr; /**< File indexes this JobId */
char* fileregex = nullptr; /**< Only restore files matching regex */
};

class UaContext;
Expand Down

0 comments on commit ca38ba1

Please sign in to comment.