diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2020-09-15 11:47:43 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2020-09-15 11:47:43 +0000 |
commit | 3b3b6f309dc97e91527c5be2a0611ecfb4ab09a0 (patch) | |
tree | de7055e83d625bfb729dc8470523e4946602c4ca /usr.bin/dig/host.c | |
parent | 47547dc66f7274ffcc3d179a96c436d3c28a7fc3 (diff) |
We have sockaddr_storage these days, get rid of isc_sockaddr_t.
OK beck, "beautiful" deraadt
Diffstat (limited to 'usr.bin/dig/host.c')
-rw-r--r-- | usr.bin/dig/host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/dig/host.c b/usr.bin/dig/host.c index d5eeb404410..9a88fd1a7f3 100644 --- a/usr.bin/dig/host.c +++ b/usr.bin/dig/host.c @@ -143,7 +143,7 @@ host_shutdown(void) { } static void -received(unsigned int bytes, isc_sockaddr_t *from, dig_query_t *query) { +received(unsigned int bytes, struct sockaddr_storage *from, dig_query_t *query) { struct timespec now; if (!short_form) { |