]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/ssl/Config.cc
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / ssl / Config.cc
index 32dd1f3ecdf8c9698bba7a6f1f1c687766e0a789..ee376e8e243d5fef2b5ec82a00cf85f028339936 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
+ */
+
 #include "squid.h"
 #include "ssl/Config.h"
 
@@ -5,9 +13,9 @@ Ssl::Config Ssl::TheConfig;
 
 Ssl::Config::Config():
 #if USE_SSL_CRTD
-        ssl_crtd(NULL),
+    ssl_crtd(nullptr),
 #endif
-        ssl_crt_validator(NULL)
+    ssl_crt_validator(nullptr)
 {
     ssl_crt_validator_Children.concurrency = 1;
 }
@@ -19,3 +27,4 @@ Ssl::Config::~Config()
 #endif
     xfree(ssl_crt_validator);
 }
+