[tls socket] change tls_tostring

This commit is contained in:
alan crouau 2024-09-09 18:29:27 +02:00
parent f47487a052
commit 2436661517

View file

@ -258,7 +258,7 @@ static int tls_tostring(lua_State *L) {
TlsContext **tlsp = checktls(L);
TlsContext *tls = *tlsp;
lua_pushfstring(L, "tls.TlsClient(fd=%d)", tls->fd);
lua_pushfstring(L, "tls.TlsClient({fd=%d})", tls->fd);
return 1;
}