summaryrefslogtreecommitdiff
path: root/src/clock/s6-taiclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/clock/s6-taiclock.c')
-rw-r--r--src/clock/s6-taiclock.c3
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") ;