mirror of
https://repo.or.cz/socat.git
synced 2025-07-11 06:22:58 +00:00
Introduced groups_t instead of uint32_t
This commit is contained in:
parent
557f299b82
commit
2cddaf22b1
35 changed files with 152 additions and 132 deletions
|
@ -26,7 +26,7 @@ uses stdin!!
|
|||
#define READLINE_MAXPROMPT 512
|
||||
|
||||
static int xioopen_readline(int argc, const char *argv[], struct opt *opts,
|
||||
int rw, xiofile_t *xfd, unsigned groups,
|
||||
int rw, xiofile_t *xfd, groups_t groups,
|
||||
int dummy1, int dummy2, int dummy3);
|
||||
|
||||
|
||||
|
@ -38,7 +38,7 @@ const struct optdesc opt_noprompt = { "noprompt", NULL, OPT_NOPROMP
|
|||
const struct optdesc opt_noecho = { "noecho", NULL, OPT_NOECHO, GROUP_READLINE, PH_LATE, TYPE_STRING, OFUNC_SPEC, 0 };
|
||||
|
||||
static int xioopen_readline(int argc, const char *argv[], struct opt *opts,
|
||||
int xioflags, xiofile_t *xfd, unsigned groups,
|
||||
int xioflags, xiofile_t *xfd, groups_t groups,
|
||||
int dummy1, int dummy2, int dummy3) {
|
||||
int rw = (xioflags & XIO_ACCMODE);
|
||||
char msgbuf[256], *cp = msgbuf;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue