mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 07:02:12 +02:00
correct wrong function prefixes: g_io_channel -> i_io_channel
This commit is contained in:
parent
9181796472
commit
50ed476623
8 changed files with 25 additions and 25 deletions
|
|
@ -74,7 +74,7 @@ static GIOChannel *net_listen_unix(const char *path)
|
|||
goto error_unlink;
|
||||
}
|
||||
|
||||
return g_io_channel_new(handle);
|
||||
return i_io_channel_new(handle);
|
||||
|
||||
error_unlink:
|
||||
unlink(sa.sun_path);
|
||||
|
|
@ -99,7 +99,7 @@ static GIOChannel *net_accept_unix(GIOChannel *handle)
|
|||
return NULL;
|
||||
|
||||
fcntl(ret, F_SETFL, O_NONBLOCK);
|
||||
return g_io_channel_new(ret);
|
||||
return i_io_channel_new(ret);
|
||||
}
|
||||
|
||||
static void remove_client(CLIENT_REC *rec)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue