Add missing static keywords

crypto_openssl_header_version_str and crypto_openssl_version_str in
crypto_openssl_mgt.c should be static.
This commit is contained in:
Taylor Yu 2018-01-23 15:57:35 -06:00
parent 23473f5e74
commit 37f26aa470
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ parse_openssl_version_str(const char *raw_version)
return tor_strdup(raw_version);
}
char *crypto_openssl_version_str = NULL;
static char *crypto_openssl_version_str = NULL;
/* Return a human-readable version of the run-time openssl version number. */
const char *
crypto_openssl_get_version_str(void)
@ -76,7 +76,7 @@ crypto_openssl_get_version_str(void)
return crypto_openssl_version_str;
}
char *crypto_openssl_header_version_str = NULL;
static char *crypto_openssl_header_version_str = NULL;
/* Return a human-readable version of the compile-time openssl version
* number. */
const char *