diff options
| author | 1998-05-19 06:58:51 +0000 | |
|---|---|---|
| committer | 1998-05-19 06:58:51 +0000 | |
| commit | e6de867086f977361352a257fa10a2c6bb724b66 (patch) | |
| tree | 8b3ee98b8b094ac442d63693b7c2fc638a731ff7 /lib/libc | |
| parent | start using new apiver things (diff) | |
| download | wireguard-openbsd-e6de867086f977361352a257fa10a2c6bb724b66.tar.xz wireguard-openbsd-e6de867086f977361352a257fa10a2c6bb724b66.zip | |
incorrect timeout handling
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/rpc/clnt_tcp.c | 4 | ||||
| -rw-r--r-- | lib/libc/rpc/svc_tcp.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/rpc/clnt_tcp.c b/lib/libc/rpc/clnt_tcp.c index b3efd3123f1..929f49713cf 100644 --- a/lib/libc/rpc/clnt_tcp.c +++ b/lib/libc/rpc/clnt_tcp.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: clnt_tcp.c,v 1.15 1997/09/22 05:11:06 millert Exp $"; +static char *rcsid = "$OpenBSD: clnt_tcp.c,v 1.16 1998/05/19 06:58:51 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -429,7 +429,7 @@ readtcp(ct, buf, len) gettimeofday(&after, NULL); timersub(&start, &after, &duration); - timersub(&delta, &duration, &tmp); + timersub(&ct->ct_wait, &duration, &tmp); delta = tmp; if (delta.tv_sec < 0 || !timerisset(&delta)) r = 0; diff --git a/lib/libc/rpc/svc_tcp.c b/lib/libc/rpc/svc_tcp.c index bd29078b461..c2a220843d9 100644 --- a/lib/libc/rpc/svc_tcp.c +++ b/lib/libc/rpc/svc_tcp.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: svc_tcp.c,v 1.15 1997/07/09 03:05:05 deraadt Exp $"; +static char *rcsid = "$OpenBSD: svc_tcp.c,v 1.16 1998/05/19 06:59:43 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -365,7 +365,7 @@ readtcp(xprt, buf, len) goto fatal_err; gettimeofday(&tmp1, NULL); timersub(&tmp1, &start, &tmp2); - timersub(&delta, &tmp2, &tmp1); + timersub(&wait_per_try, &tmp2, &tmp1); if (tmp1.tv_sec < 0 || !timerisset(&tmp1)) goto fatal_err; delta = tmp1; |
