1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-10 06:06:33 +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

@ -96,8 +96,8 @@ int applyopts_named(const char *filename, struct opt *opts, unsigned int phase)
After this sub you may proceed with open() or whatever...
*/
int _xioopen_named_early(int argc, const char *argv[], xiofile_t *xfd,
int groups,
bool *exists, struct opt *opts) {
groups_t groups, bool *exists, struct opt *opts)
{
const char *path = argv[1];
#if HAVE_STAT64
struct stat64 statbuf;