Fix integer constant from 20 to 18

A bad click merged a commit before it was ready (it was +2ed
previously).  So far as I'm aware, this was the only change needed.

Happy to revert it if someone sees need to.

Signed-off-by: Ed Tanous <ed@tanous.net>
Change-Id: I4bb842edd78a4d580bb4842e4a708632761fa86d
diff --git a/redfish-core/lib/certificate_service.hpp b/redfish-core/lib/certificate_service.hpp
index 276e2ac..6fc5515 100644
--- a/redfish-core/lib/certificate_service.hpp
+++ b/redfish-core/lib/certificate_service.hpp
@@ -161,7 +161,7 @@
     CertificateFile& operator=(CertificateFile&&) = delete;
     CertificateFile(const std::string& certString)
     {
-        std::array<char, 20> dirTemplate = {'/', 't', 'm', 'p', '/', 'C',
+        std::array<char, 18> dirTemplate = {'/', 't', 'm', 'p', '/', 'C',
                                             'e', 'r', 't', 's', '.', 'X',
                                             'X', 'X', 'X', 'X', 'X', '\0'};
         char* tempDirectory = mkdtemp(dirTemplate.data());