Code cleanup

This commit is contained in:
Pierre Pronchery 2014-05-13 20:52:15 +02:00
parent c3f08aebb4
commit 82a780deca

View File

@ -111,8 +111,8 @@ struct _AppTransportPlugin
/* protected */ /* protected */
/* prototypes */ /* prototypes */
/* plug-in */ /* plug-in */
static SSLTransport * _ssl_init(AppTransportPluginHelper * helper, AppTransportMode mode, static SSLTransport * _ssl_init(AppTransportPluginHelper * helper,
char const * name); AppTransportMode mode, char const * name);
static void _ssl_destroy(SSLTransport * ssl); static void _ssl_destroy(SSLTransport * ssl);
static int _ssl_client_send(SSLTransport * ssl, AppTransportClient * client, static int _ssl_client_send(SSLTransport * ssl, AppTransportClient * client,
@ -165,8 +165,8 @@ AppTransportPluginDefinition transport =
static int _init_client(SSLTransport * ssl, char const * name); static int _init_client(SSLTransport * ssl, char const * name);
static int _init_server(SSLTransport * ssl, char const * name); static int _init_server(SSLTransport * ssl, char const * name);
static SSLTransport * _ssl_init(AppTransportPluginHelper * helper, AppTransportMode mode, static SSLTransport * _ssl_init(AppTransportPluginHelper * helper,
char const * name) AppTransportMode mode, char const * name)
{ {
SSLTransport * ssl; SSLTransport * ssl;
int res; int res;