Previously, when C99_MACROS is not defined, _gnutls_no_log was
expanded to _gnutle_null_log and thus caused a compilation error.
Reported by Andrew Lilley Brinker in:
https://gitlab.com/gnutls/gnutls/-/issues/1530
Signed-off-by: Ramesh <adhikari.resume@gmail.com>
#define _gnutls_dtls_log _gnutls_null_log
#define _gnutls_read_log _gnutls_null_log
#define _gnutls_write_log _gnutls_null_log
-#define _gnutls_no_log _gnutle_null_log
+#define _gnutls_no_log _gnutls_null_log
void _gnutls_null_log(void *, ...);