From: Ralf S. Engelschall Date: Thu, 24 Feb 2000 10:36:51 +0000 (+0000) Subject: Add an evil cast, because POSIX/SUSv2 define connect(2) require X-Git-Tag: OpenSSL_0_9_5beta2~93 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8d5b4ee1cab7cd02f9fe246fb60d7d018a315a86;p=oweals%2Fopenssl.git Add an evil cast, because POSIX/SUSv2 define connect(2) require the second argument to be of type ``struct sockaddr *''. --- 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);