commit | 1bc04c766432a9180cb011f7ca5390fc77789223 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Sun Oct 29 20:14:08 2017 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Oct 31 13:58:33 2017 +0100 |
tree | 254b92d36e8870b76af3f7a0bbdc9c0e4d8e69af | |
parent | cd7879adc2c408cd607bb287318d8152eb059872 [diff] [blame] |
BUG/MINOR: threads: Add missing THREAD_LOCAL on static here and there
diff --git a/src/checks.c b/src/checks.c index 8411fef..c9e655d 100644 --- a/src/checks.c +++ b/src/checks.c
@@ -2380,7 +2380,7 @@ */ static int httpchk_expect(struct server *s, int done) { - static char status_msg[] = "HTTP status check returned code <000>"; + static THREAD_LOCAL char status_msg[] = "HTTP status check returned code <000>"; char status_code[] = "000"; char *contentptr; int crlf;