summaryrefslogtreecommitdiff
path: root/src/core/network-openssl.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2002-08-26 23:37:49 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2002-08-26 23:37:49 +0000
commit8790f97869008c25fa14aa7321b1dfce3af4a64b (patch)
treeb777b69fdabded6e0d8e8fd9fbba673c05997f03 /src/core/network-openssl.c
parenta17321c5c8f45619b8ce048082467729357e92dd (diff)
downloadirssi-8790f97869008c25fa14aa7321b1dfce3af4a64b.zip
right. maybe now builds with glib2 right?
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2898 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/network-openssl.c')
-rw-r--r--src/core/network-openssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/network-openssl.c b/src/core/network-openssl.c
index 3d091200..b9b7b4a0 100644
--- a/src/core/network-openssl.c
+++ b/src/core/network-openssl.c
@@ -41,7 +41,7 @@ void irssi_ssl_close(GIOChannel *);
/* ssl create watch */
guint irssi_ssl_create_watch(GIOChannel *, gint, GIOCondition, GIOFunc, gpointer, GDestroyNotify);
#else
-guint irssi_ssl_create_watch(GIOChannel *, GIOCondition);
+GSource *irssi_ssl_create_watch(GIOChannel *, GIOCondition);
#endif
/* ssl free */
void irssi_ssl_free(GIOChannel *);
@@ -191,7 +191,7 @@ guint irssi_ssl_create_watch(GIOChannel *handle, gint priority, GIOCondition con
return chan->giochan->funcs->io_add_watch(handle, priority, cond, func, data, notify);
}
#else
-guint irssi_ssl_create_watch(GIOChannel *handle, GIOCondition cond)
+GSource *irssi_ssl_create_watch(GIOChannel *handle, GIOCondition cond)
{
GIOSSLChannel *chan = (GIOSSLChannel *)handle;