diff options
author | Simon Josefsson <simon@josefsson.org> | 2008-08-29 11:14:49 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2008-08-29 11:14:49 +0200 |
commit | 0c0fdef9b3fb603e8a170a598351aec5c27896c7 (patch) | |
tree | 3fcc24d71d4819c2ff18e75b2557945cdc2c3c00 /lib/gnutls_constate.c | |
parent | c6de7cca81ff88231815866178d5d553bed21b7b (diff) | |
download | gnutls-0c0fdef9b3fb603e8a170a598351aec5c27896c7.tar.gz |
Fix warnings.
Diffstat (limited to 'lib/gnutls_constate.c')
-rw-r--r-- | lib/gnutls_constate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gnutls_constate.c b/lib/gnutls_constate.c index ae21196a7d..bc724d82ce 100644 --- a/lib/gnutls_constate.c +++ b/lib/gnutls_constate.c @@ -54,7 +54,7 @@ static const int servwrite_length = sizeof (servwrite) - 1; * This function creates the keys and stores them into pending session. * (session->cipher_specs) */ -int +static int _gnutls_set_keys (gnutls_session_t session, int hash_size, int IV_size, int key_size, int export_flag) { @@ -381,7 +381,7 @@ _gnutls_set_keys (gnutls_session_t session, int hash_size, int IV_size, return 0; } -int +static int _gnutls_set_read_keys (gnutls_session_t session) { int hash_size; @@ -402,7 +402,7 @@ _gnutls_set_read_keys (gnutls_session_t session) export_flag); } -int +static int _gnutls_set_write_keys (gnutls_session_t session) { int hash_size; |