Skip to content

Commit

Permalink
TlsResource: corrected initialization order
Browse files Browse the repository at this point in the history
  • Loading branch information
franku committed Nov 20, 2018
1 parent 79f0696 commit 58bd7c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/lib/parse_conf.h
Expand Up @@ -325,10 +325,10 @@ class TlsResource : public BareosResource {
bool require_;

TlsResource()
: authenticate_(false)
: cipherlist_(nullptr)
, authenticate_(false)
, enable_(false)
, require_(false)
, cipherlist_(nullptr)
{}

bool IsTlsConfigured() const {
Expand Down

0 comments on commit 58bd7c7

Please sign in to comment.