diff options
| author | 2020-02-16 18:05:08 +0000 | |
|---|---|---|
| committer | 2020-02-16 18:05:08 +0000 | |
| commit | 7238a2133580581146507cd42b2e8f075639c425 (patch) | |
| tree | 0ec4d57f2233dd4103a4ee071eeb3f570d12c025 /usr.bin/dig/lib/isc/unix/app.c | |
| parent | 16 << PGSHIFT (which is >= 12) is always >= MAXPHYS (64 * 1024) so (diff) | |
| download | wireguard-openbsd-7238a2133580581146507cd42b2e8f075639c425.tar.xz wireguard-openbsd-7238a2133580581146507cd42b2e8f075639c425.zip | |
Replace isc_time_t and interval_t with struct timespec.
Input & OK millert
Diffstat (limited to 'usr.bin/dig/lib/isc/unix/app.c')
| -rw-r--r-- | usr.bin/dig/lib/isc/unix/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/dig/lib/isc/unix/app.c b/usr.bin/dig/lib/isc/unix/app.c index c63c75cda70..eebe9a39936 100644 --- a/usr.bin/dig/lib/isc/unix/app.c +++ b/usr.bin/dig/lib/isc/unix/app.c @@ -299,7 +299,7 @@ evloop(isc__appctx_t *ctx) { while (!ctx->want_shutdown) { int n; - isc_time_t when, now; + struct timespec when, now; struct timeval tv, *tvp; isc_socketwait_t *swait; isc_boolean_t readytasks; |
