#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wsuggest-attribute=noreturn"
#endif
-#endif
+#endif /* defined(_WIN32) */
/**
* Tell the sandbox (if any) configured by <b>cfg</b> to allow the
**/
typedef struct hs_opts_t hs_opts_t;
-#endif
+#endif /* !defined(TOR_FEATURE_HS_HS_OPTS_ST_H) */
dmp1 = RSA_get0_dmp1(rsa);
dmq1 = RSA_get0_dmq1(rsa);
iqmp = RSA_get0_iqmp(rsa);
-#else
+#else /* !(OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,1)) */
/* The accessors above did not exist in openssl 1.1.0. */
p = q = dmp1 = dmq1 = iqmp = NULL;
RSA_get0_key(rsa, &n, &e, &d);
-#endif
+#endif /* OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,1) */
if (RSA_bits(rsa) > max_bits)
return true;
-#else
+#else /* !defined(OPENSSL_1_1_API) */
n = rsa->n;
e = rsa->e;
p = rsa->p;
dmp1 = rsa->dmp1;
dmq1 = rsa->dmq1;
iqmp = rsa->iqmp;
-#endif
+#endif /* defined(OPENSSL_1_1_API) */
if (n && BN_num_bits(n) > max_bits)
return true;
**/
#define SUBSYS_DECLARE_LOCATION() \
.location = __FILE__
-#endif
+#endif /* !defined(COCCI) */
/**
* Lowest allowed subsystem level.
#if !defined(__COVERITY__) && !defined(__clang_analyzer__)
tt_skip();
#endif
-#endif
+#endif /* defined(ALL_BUGS_ARE_FATAL) */
MOCK(count_acceptable_nodes, mock_count_acceptable_nodes);
tt_str_op(smartlist_get(tor_get_captured_bug_log_(), 0), OP_EQ,
"!(!ok)");
tor_end_capture_bugs_();
-#endif
+#endif /* !defined(ALL_BUGS_ARE_FATAL) */
done:
SMARTLIST_FOREACH(lst, char *, cp, tor_free(cp));
#if !defined(__COVERITY__) && !defined(__clang_analyzer__)
tt_skip();
#endif
-#endif
+#endif /* defined(ALL_BUGS_ARE_FATAL) */
tor_capture_bugs_(1);
setup_full_capture_of_logs(LOG_WARN);
ret = validate_introduce1_parsed_cell(cell);
tor_end_capture_bugs_();
tt_int_op(ret, OP_EQ, -1);
-#endif
+#endif /* !defined(ALL_BUGS_ARE_FATAL) */
/* Reset legacy ID and make sure it's correct. */
memset(cell->legacy_key_id, 0, sizeof(cell->legacy_key_id));