Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Sikora <piotrsikora@google.com>2016-03-19 04:19:04 +0300
committerDavid Benjamin <davidben@google.com>2016-03-20 19:37:58 +0300
commit9bb8ba6ba1a865bd7e55ccf494d082b1bc027734 (patch)
tree11d4f1473e4e0a7dabf73b804967d2afc00a53c1 /crypto/conf
parent537cfc37b82f91f1006596317ba544e4be1a5c8e (diff)
Make local functions static.
Partially fixes build with -Wmissing-prototypes -Wmissing-declarations. Change-Id: I6048f5b7ef31560399b25ed9880156bc7d8abac2 Signed-off-by: Piotr Sikora <piotrsikora@google.com> Reviewed-on: https://boringssl-review.googlesource.com/7511 Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'crypto/conf')
-rw-r--r--crypto/conf/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/conf/conf.c b/crypto/conf/conf.c
index 6bdcc4dc..eed07e6d 100644
--- a/crypto/conf/conf.c
+++ b/crypto/conf/conf.c
@@ -152,7 +152,7 @@ void NCONF_free(CONF *conf) {
OPENSSL_free(conf);
}
-CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) {
+static CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) {
STACK_OF(CONF_VALUE) *sk = NULL;
int ok = 0;
CONF_VALUE *v = NULL, *old_value;