fixed a mistake in ../bin/t06.c

This commit is contained in:
hyung-hwan 2021-08-06 04:37:26 +00:00
parent f42f6286b4
commit 772d8237f0

View File

@ -240,7 +240,7 @@ void* thr_func (void* arg)
htts_bind_info[1].ssl_keyfile = "localhost.key"; htts_bind_info[1].ssl_keyfile = "localhost.key";
#endif #endif
htts = hio_svc_htts_start(hio, &htts_bind_info, HIO_COUNTOF(htts_bind_info), process_http_request); htts = hio_svc_htts_start(hio, htts_bind_info, HIO_COUNTOF(htts_bind_info), process_http_request);
if (!htts) if (!htts)
{ {
printf ("Unable to start htts\n"); printf ("Unable to start htts\n");