blob: 6702f3bde4e74069134e157d9562fda9990519f1 [file] [log] [blame]
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -05001From d095caf6f8f77fe056fb90ccd5d89c207a7f346d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 12 Aug 2020 12:59:38 -0700
4Subject: [PATCH] v84: Make setup_options definitions as extern
5
6This is already defined in drbdadm_main.c, therefore make this
7declaration to be extern for other modules
8
9Fixes compatibility with gcc-10 which uses -fno-common by default
10
11Upstream-Status: Submitted [https://github.com/LINBIT/drbd-utils/pull/7]
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 user/v84/drbdadm.h | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/user/v84/drbdadm.h b/user/v84/drbdadm.h
18index ed63d78c..8469f1c4 100644
19--- a/user/v84/drbdadm.h
20+++ b/user/v84/drbdadm.h
21@@ -251,7 +251,7 @@ struct setup_option {
22 bool explicit;
23 char *option;
24 };
25-struct setup_option *setup_options;
26+extern struct setup_option *setup_options;
27
28 extern void add_setup_option(bool explicit, char *option);
29
30--
312.28.0
32