mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 09:02:13 +02:00
compiling fix
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2977 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
ba52d084d6
commit
39fc0f5ea1
1 changed files with 4 additions and 2 deletions
|
|
@ -51,8 +51,10 @@ static void irssi_ssl_free(GIOChannel *handle)
|
||||||
|
|
||||||
#ifdef G_CAN_INLINE
|
#ifdef G_CAN_INLINE
|
||||||
G_INLINE_FUNC
|
G_INLINE_FUNC
|
||||||
|
#else
|
||||||
|
static
|
||||||
#endif
|
#endif
|
||||||
static GIOError ssl_errno(gint e)
|
GIOError ssl_errno(gint e)
|
||||||
{
|
{
|
||||||
switch(e)
|
switch(e)
|
||||||
{
|
{
|
||||||
|
|
@ -118,7 +120,7 @@ static GIOError irssi_ssl_read(GIOChannel *handle, gchar *buf, guint len, guint
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GIOError irssi_ssl_write(GIOChannel *handle, const gchar *buf, guint len, guint *ret)
|
static GIOError irssi_ssl_write(GIOChannel *handle, gchar *buf, guint len, guint *ret)
|
||||||
{
|
{
|
||||||
GIOSSLChannel *chan = (GIOSSLChannel *)handle;
|
GIOSSLChannel *chan = (GIOSSLChannel *)handle;
|
||||||
gint err;
|
gint err;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue