remove unused entrypoint field

ventige of the cgi support (and lack of url rewriting)
This commit is contained in:
Omar Polo 2022-09-10 10:22:24 +00:00
parent 7bb80ca90d
commit 934f957f29
2 changed files with 0 additions and 2 deletions

1
gmid.c
View File

@ -273,7 +273,6 @@ free_config(void)
free((char*)h->cert);
free((char*)h->key);
free((char*)h->ocsp);
free((char*)h->entrypoint);
TAILQ_REMOVE(&hosts, h, vhosts);
free(h);

1
gmid.h
View File

@ -160,7 +160,6 @@ struct vhost {
const char *cert;
const char *key;
const char *ocsp;
const char *entrypoint;
TAILQ_ENTRY(vhost) vhosts;