CLEANUP: hlua: fix CertCache class comment

CLASS_CERTCACHE is used to declare CertCache global object, not Regex one

This copy-paste typo introduced was in 30fcca18 ("MINOR: ssl/lua:
CertCache.set() allows to update an SSL certificate file")
This commit is contained in:
Aurelien DARRAGON 2024-06-03 16:35:53 +02:00
parent 4f906a9c38
commit a63f2cde94

View File

@ -13689,7 +13689,7 @@ lua_State *hlua_init_state(int thread_num)
lua_newtable(L); lua_newtable(L);
/* Register */ /* Register */
hlua_class_function(L, "set", hlua_ckch_set); hlua_class_function(L, "set", hlua_ckch_set);
lua_setglobal(L, CLASS_CERTCACHE); /* Create global object called Regex */ lua_setglobal(L, CLASS_CERTCACHE); /* Create global object called CertCache */
/* /*
* *