diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-08-10 18:35:28 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2021-08-10 18:35:28 +0000 |
commit | e91e31ff45eb3700024a4e16435ff4f177072804 (patch) | |
tree | c564b1a40a548d3b357a580807ce849deeec048e /src | |
parent | 9cef1c1af7d7c82f96930f4fcfead330981ad248 (diff) | |
download | smtpd-starttls-proxy-e91e31ff45eb3700024a4e16435ff4f177072804.tar.xz |
Adapt to skalibs-2.11.0.0
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/smtpd-starttls-proxy/smtpd-starttls-proxy-io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smtpd-starttls-proxy/smtpd-starttls-proxy-io.c b/src/smtpd-starttls-proxy/smtpd-starttls-proxy-io.c index fcb1abd..6635745 100644 --- a/src/smtpd-starttls-proxy/smtpd-starttls-proxy-io.c +++ b/src/smtpd-starttls-proxy/smtpd-starttls-proxy-io.c @@ -232,7 +232,7 @@ static void child (int, int) gccattr_noreturn ; static void child (int fdr, int fdw) { iopause_fd x[4] = { { .fd = 0 }, { .fd = 1 }, { .fd = fdr }, { .fd = fdw } } ; - tain_t deadline ; + tain deadline ; PROG = "smtpd-starttls-proxy-io" ; if (ndelay_on(0) < 0 || ndelay_on(1) < 0 || ndelay_on(fdr) < 0 || ndelay_on(fdw) < 0) @@ -356,7 +356,7 @@ int main (int argc, char const *const *argv) int p[2][2] ; PROG = "smtpd-starttls-proxy-io (parent)" ; { - subgetopt_t l = SUBGETOPT_ZERO ; + subgetopt l = SUBGETOPT_ZERO ; for (;;) { int opt = subgetopt_r(argc, argv, "", &l) ; |