summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-09-21 13:14:26 +0200
committerRichard Levitte <levitte@openssl.org>2020-09-24 08:06:50 +0200
commitcdb5129e5c5fd8ad678c5efb1e87c91595d907b4 (patch)
tree99f2eb87e71f0ee3c8cba9a953667a670448b5fe /include
parent37fe90ad17fcaaeb33d01c660ed1c12db723d833 (diff)
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 'include')
-rw-r--r--include/internal/sockets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/sockets.h b/include/internal/sockets.h
index e3a6bd459b..e86ae8a09e 100644
--- a/include/internal/sockets.h
+++ b/include/internal/sockets.h
@@ -145,7 +145,7 @@ struct servent *PASCAL getservbyname(const char *, const char *);
# define closesocket(s) close(s)
# define readsocket(s,b,n) read((s),(b),(n))
# define writesocket(s,b,n) write((s),(char *)(b),(n))
-# elif defined(OPENSSL_SYSNAME_TANDEM)
+# elif defined(OPENSSL_SYS_TANDEM)
# if defined(OPENSSL_TANDEM_FLOSS)
# include <floss.h(floss_read, floss_write)>
# define readsocket(s,b,n) floss_read((s),(b),(n))