commit 33ac26a0e51e70ab31b03d6c2b3140595c3b4792 from: Omar Polo date: Thu Jan 21 14:49:11 2021 UTC fix prototypes commit - 642b37d5acfd3b7865d3f9da1d202838e5449060 commit + 33ac26a0e51e70ab31b03d6c2b3140595c3b4792 blob - a6b87817e0adbcdbadbd343903fa1ccf2e3d72a7 blob + 18ad371d8005469107b8ecdf85e2b907eae171df --- gmid.h +++ gmid.h @@ -156,8 +156,8 @@ void yyerror(const char*); int parse_portno(const char*); void parse_conf(const char*); void load_vhosts(struct tls_config*); -int make_soket(int); -int listener_main(); +int make_socket(int, int); +int listener_main(void); void usage(const char*); /* provided by lex/yacc */ @@ -202,7 +202,7 @@ int recv_fd(int); int executor_main(int); /* sandbox.c */ -void sandbox(); +void sandbox(void); /* utf8.c */ int valid_multibyte_utf8(struct parser*);