blob: 599de51e0d92e528ef2e8876ff4ec530eb9bc57a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Upstream: Should be
Reason: Fixes compilation under gcc-10 which has -fno-common
diff --git a/src/stats.c b/src/stats.c
index 35dbf7d..76bfbee 100644
--- a/src/stats.c
+++ b/src/stats.c
@@ -82,7 +82,7 @@ struct statsdata {
char compiler[MAX_FILENAME_LEN];
};
-const char *stats_text[20] = { "TCP_ACCEPT", "REJ_BAD_REQ", "REJ_OVERLOAD",
+extern const char *stats_text[20] = { "TCP_ACCEPT", "REJ_BAD_REQ", "REJ_OVERLOAD",
"COMPILE_OK", "COMPILE_ERROR", "COMPILE_TIMEOUT", "CLI_DISCONN",
"OTHER" };
|