X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fcoreapplication.cpp;h=25dd6851392bc0899cdcac145ff7ec8447fc96fd;hb=6a63070246d89aa2a2474e3a9a1035fa889ad77e;hp=1a689a22fcf25790f5043df10e6b741fd46f59a1;hpb=b5dfd31e3d1ad7ca4bfe8262b62be259f6dc786a;p=quassel.git diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index 1a689a22..25dd6851 100644 --- a/src/core/coreapplication.cpp +++ b/src/core/coreapplication.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -56,7 +56,8 @@ bool CoreApplicationInternal::init() _coreCreated = true; Quassel::registerReloadHandler([]() { - // Currently, only reloading SSL certificates is supported + // Currently, only reloading SSL certificates and the sysident cache is supported + Core::cacheSysIdent(); return Core::reloadCerts(); }); @@ -84,6 +85,7 @@ CoreApplication::CoreApplication(int &argc, char **argv) CoreApplication::~CoreApplication() { delete _internal; + Quassel::destroy(); }