]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Ensure that _GNU_SOURCE is defined for bss_dgram.c
authorDaniel Krügler <daniel.kruegler@gmail.com>
Fri, 27 Aug 2021 16:32:20 +0000 (18:32 +0200)
committerDmitry Belyavskiy <beldmit@gmail.com>
Sun, 29 Aug 2021 16:56:15 +0000 (18:56 +0200)
This fixes the following error with gcc10 under strict ANSI conditions:

.../crypto/bio/bss_dgram.c:373:20: error: 'const struct in6_addr' has no member named 's6_addr32'

CLA: trivial
Fixes #16449

Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/16451)

(cherry picked from commit e8e1f6d1a9e599d575431f559200018b8f822e0f)

crypto/bio/bss_dgram.c

index 942fd8b514be336c168d47457f9e03b9ef56b368..2b2e4d5f88fa460bebddbdcebcf0262de59f13f0 100644 (file)
@@ -7,6 +7,10 @@
  * https://www.openssl.org/source/license.html
  */
 
+#ifndef _GNU_SOURCE
+# define _GNU_SOURCE
+#endif
+
 #include <stdio.h>
 #include <errno.h>