diff options
author | Sven Moritz Hallberg <pesco@khjk.org> | 2008-07-16 23:45:12 +0200 |
---|---|---|
committer | Sven Moritz Hallberg <pesco@khjk.org> | 2008-07-16 23:45:12 +0200 |
commit | 9730d7250bb9e938ca00b72efdd8e8b3c03b2753 (patch) | |
tree | b2cdeac37068db3fb6e1ed5ab9a38611b6e28ee9 | |
parent | b14890de5407689555b1fcc293455fb77d306afd (diff) |
minor bugfixes
-rw-r--r-- | lib/ssl_openssl.c | 2 | ||||
-rw-r--r-- | otr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl_openssl.c b/lib/ssl_openssl.c index e54b21ee..0ec9865f 100644 --- a/lib/ssl_openssl.c +++ b/lib/ssl_openssl.c @@ -56,7 +56,7 @@ static gboolean ssl_starttls_real( gpointer data, gint source, b_input_condition static gboolean ssl_handshake( gpointer data, gint source, b_input_condition cond ); -void ssl_init( void ); +void ssl_init( void ) { initialized = TRUE; SSLeay_add_ssl_algorithms(); @@ -763,7 +763,7 @@ void cmd_otr_info(irc_t *irc, char **args) show_general_otr_info(irc); } else { char *arg = g_strdup(args[1]); - char *myhandle, *handle, *protocol; + char *myhandle, *handle=NULL, *protocol; ConnContext *ctx; /* interpret arg as 'user/protocol/account' if possible */ |