Browse Source

ifdef this out

pull/2/head
Grant Limberg 5 years ago
parent
commit
a20a290836
No known key found for this signature in database
GPG Key ID: 2BA62CCABBB4095A
  1. 2
      controller/PostgreSQL.cpp

2
controller/PostgreSQL.cpp

@ -157,7 +157,9 @@ PostgreSQL::PostgreSQL(const Identity &myId, const char *path, int listenPort, R
memset(_ssoPsk, 0, sizeof(_ssoPsk));
char *const ssoPskHex = getenv("ZT_SSO_PSK");
#ifdef ZT_TRACE
fprintf(stderr, "ZT_SSO_PSK: %s\n", ssoPskHex);
#endif
if (ssoPskHex) {
// SECURITY: note that ssoPskHex will always be null-terminated if libc acatually
// returns something non-NULL. If the hex encodes something shorter than 48 bytes,

Loading…
Cancel
Save