diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-04-09 19:01:52 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-04-09 19:01:52 +0000 |
commit | c45631e0d8d2de6f44c618408a187645fe48e16e (patch) | |
tree | cff4ec7e469b140bf15f19bea0110d5eb1cf450e /src/clock/s6-taiclock.c | |
parent | b51c1b1911e97c552d99f8a00698bbae30229ce0 (diff) | |
download | s6-networking-c45631e0d8d2de6f44c618408a187645fe48e16e.tar.xz |
Prepare for 2.5.1.1; adapt to skalibs-2.12.0.0
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/clock/s6-taiclock.c')
-rw-r--r-- | src/clock/s6-taiclock.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/clock/s6-taiclock.c b/src/clock/s6-taiclock.c index 2bc0470..6701f9e 100644 --- a/src/clock/s6-taiclock.c +++ b/src/clock/s6-taiclock.c @@ -33,7 +33,7 @@ int tain_exchange (int s, ip46 const *ip, uint16_t port, tain *serversays, tain ssize_t r ; uint16_t dummyport ; tain_pack(query+4, &STAMP) ; - random_string(query+20, N-20) ; /* cookie */ + random_buf(query+20, N-20) ; /* cookie */ r = socket_sendnb46_g(s, query, N, ip, port, deadline) ; if (r < 0) return 0 ; if (r < N) return (errno = EPIPE, 0) ; @@ -95,7 +95,6 @@ int main (int argc, char const *const *argv) } if (!argc) dieusage() ; if (!ip46_scan(argv[0], &ipremote)) dieusage() ; - if (!random_init()) strerr_diefu1sys(111, "init random generator") ; sock = socket_udp46(ip46_is6(&ipremote)) ; if (sock < 0) strerr_diefu1sys(111, "socket_udp") ; |