Format code.

This commit is contained in:
Jordan Bancino 2023-05-27 18:22:38 +00:00
parent 11a7b6653d
commit a358ca795d
2 changed files with 21 additions and 20 deletions

View file

@ -292,21 +292,21 @@ HttpServerCreate(HttpServerConfig * config)
if (!config)
{
errno = EINVAL;
errno = EINVAL;
return NULL;
}
if (!config->handler)
{
errno = EINVAL;
errno = EINVAL;
return NULL;
}
#ifndef TLS_IMPL
if (config->flags & HTTP_FLAG_TLS)
{
Log(LOG_ERR, "TLS support is disabled.");
errno = EINVAL;
Log(LOG_ERR, "TLS support is disabled.");
errno = EINVAL;
return NULL;
}
#endif