1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-08 05:36:32 +00:00

Introduced groups_t instead of uint32_t

This commit is contained in:
Gerhard Rieger 2023-06-14 11:41:44 +02:00
parent 557f299b82
commit 2cddaf22b1
35 changed files with 152 additions and 132 deletions

View file

@ -74,7 +74,7 @@ static char *optionphasenames[] = {
/* print a line about a single option */
static int xiohelp_option(FILE *of, const struct optname *on, const char *name) {
int j;
unsigned int groups;
groups_t groups;
bool occurred;
fprintf(of, " %s\tgroups=", name);
@ -99,7 +99,7 @@ int xioopenhelp(FILE *of,
const struct addrname *an;
const struct optname *on;
int i, j;
unsigned int groups;
groups_t groups;
bool occurred;
fputs(" bi-address:\n", of);