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 /libextra | |
parent | c6de7cca81ff88231815866178d5d553bed21b7b (diff) | |
download | gnutls-0c0fdef9b3fb603e8a170a598351aec5c27896c7.tar.gz |
Fix warnings.
Diffstat (limited to 'libextra')
-rw-r--r-- | libextra/gnutls_ia.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libextra/gnutls_ia.c b/libextra/gnutls_ia.c index d6a91fa162..ce00b828d3 100644 --- a/libextra/gnutls_ia.c +++ b/libextra/gnutls_ia.c @@ -452,7 +452,7 @@ gnutls_ia_recv (gnutls_session_t session, char *data, size_t sizeofdata) handle EAGAIN/EINTERRUPTED? just add more problems to callers, though. */ -int +static int _gnutls_ia_client_handshake (gnutls_session_t session) { char *buf = NULL; @@ -521,7 +521,7 @@ _gnutls_ia_client_handshake (gnutls_session_t session) return 0; } -int +static int _gnutls_ia_server_handshake (gnutls_session_t session) { gnutls_ia_apptype_t msg_type; |