FS-10025: fix global symbol scope issue causing modules to use another modules global pointer

This commit is contained in:
Mike Jerris
2017-02-09 17:23:30 -06:00
parent c125ab7315
commit a3ee7595bb
31 changed files with 526 additions and 528 deletions

View File

@@ -1 +1 @@
Thu Dec 22 16:13:33 CST 2016
Thu Feb 9 16:42:05 CST 2017

View File

@@ -28,7 +28,7 @@
#define WS_WRITE_SANITY 2000
#define SHA1_HASH_SIZE 20
struct ws_globals_s ws_globals;
static struct ws_globals_s ws_globals;
#ifndef WSS_STANDALONE

View File

@@ -61,7 +61,7 @@ struct ws_globals_s {
char key[512];
};
extern struct ws_globals_s ws_globals;
//extern struct ws_globals_s ws_globals;
#ifndef WIN32
typedef int ws_socket_t;