From 8d5b4ee1cab7cd02f9fe246fb60d7d018a315a86 Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Thu, 24 Feb 2000 10:36:51 +0000 Subject: [PATCH] Add an evil cast, because POSIX/SUSv2 define connect(2) require the second argument to be of type ``struct sockaddr *''. --- crypto/rand/rand_egd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index 802d35b5c2..3a081d4f62 100644 --- a/crypto/rand/rand_egd.c +++ b/crypto/rand/rand_egd.c @@ -91,7 +91,7 @@ int RAND_egd(const char *path) len = offsetof(struct sockaddr_un, sun_path) + strlen(path); fd = socket(AF_UNIX, SOCK_STREAM, 0); if (fd == -1) return (-1); - if (connect(fd, &addr, len) == -1) goto err; + if (connect(fd, (struct sockaddr *)&addr, len) == -1) goto err; buf[0] = 1; buf[1] = 255; write(fd, buf, 2); -- 2.25.1