aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-03-16 20:28:31 -0700
committerGarrett D'Amore <garrett@damore.org>2025-04-13 22:29:09 -0700
commit9a6c330d3b29eb921704c3b732c275d064ebd4c2 (patch)
treef5b905e87416c1d2aea5738a56b3e46896d18c2e
parent5b886b57e79992f1d184ca0309757b01e320c552 (diff)
downloadnng-9a6c330d3b29eb921704c3b732c275d064ebd4c2.tar.gz
nng-9a6c330d3b29eb921704c3b732c275d064ebd4c2.tar.bz2
nng-9a6c330d3b29eb921704c3b732c275d064ebd4c2.zip
Fix typo in NNG_TLS_MAX_RECV_SIZE
-rw-r--r--src/supplemental/tls/tls_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supplemental/tls/tls_common.c b/src/supplemental/tls/tls_common.c
index d68a6197..fca0b420 100644
--- a/src/supplemental/tls/tls_common.c
+++ b/src/supplemental/tls/tls_common.c
@@ -27,7 +27,7 @@
// NNG_TLS_MAX_RECV_SIZE limits the amount of data we will receive in a single
// operation. As we have to buffer data, this drives the size of our
// intermediary buffer. The 16K is aligned to the maximum TLS record size.
-#ifndef NNG_TLX_MAX_RECV_SIZE
+#ifndef NNG_TLS_MAX_RECV_SIZE
#define NNG_TLS_MAX_RECV_SIZE 16384
#endif