diff options
author | Richard Levitte <levitte@openssl.org> | 2020-09-21 13:14:26 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-09-24 08:06:50 +0200 |
commit | cdb5129e5c5fd8ad678c5efb1e87c91595d907b4 (patch) | |
tree | 99f2eb87e71f0ee3c8cba9a953667a670448b5fe /crypto/rand | |
parent | 37fe90ad17fcaaeb33d01c660ed1c12db723d833 (diff) | |
download | openssl-new-cdb5129e5c5fd8ad678c5efb1e87c91595d907b4.tar.gz |
Use OPENSSL_SYS_TANDEM instead of OPENSSL_SYSNAME_TANDEM
This streamlines with all other config targets, and draws from the
'sys_id' config attribute.
Fixes #12858
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12933)
Diffstat (limited to 'crypto/rand')
-rw-r--r-- | crypto/rand/rand_egd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c index c6dcd87f04..dc1833169c 100644 --- a/crypto/rand/rand_egd.c +++ b/crypto/rand/rand_egd.c @@ -54,7 +54,7 @@ struct sockaddr_un { # include <string.h> # include <errno.h> -# if defined(OPENSSL_SYSNAME_TANDEM) +# if defined(OPENSSL_SYS_TANDEM) /* * HPNS: * @@ -125,7 +125,7 @@ int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) return -1; strcpy(addr.sun_path, path); i = offsetof(struct sockaddr_un, sun_path) + strlen(path); -#if defined(OPENSSL_SYSNAME_TANDEM) +#if defined(OPENSSL_SYS_TANDEM) fd = hpns_socket(AF_UNIX, SOCK_STREAM, 0, AF_UNIX_COMPATIBILITY); #else fd = socket(AF_UNIX, SOCK_STREAM, 0); @@ -158,7 +158,7 @@ int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) /* No error, try again */ break; default: -# if defined(OPENSSL_SYSNAME_TANDEM) +# if defined(OPENSSL_SYS_TANDEM) if (hpns_connect_attempt == 0) { /* try the other kind of AF_UNIX socket */ close(fd); |