correct wrong function prefixes: g_io_channel -> i_io_channel

This commit is contained in:
Ailin Nemui 2021-01-04 15:42:20 +01:00
commit 50ed476623
8 changed files with 25 additions and 25 deletions

View file

@ -302,9 +302,9 @@ static void process_exec(PROCESS_REC *rec, const char *cmd)
if (rec->pid != 0) {
/* parent process */
GIOChannel *outio = g_io_channel_new(in[1]);
GIOChannel *outio = i_io_channel_new(in[1]);
rec->in = g_io_channel_new(out[0]);
rec->in = i_io_channel_new(out[0]);
rec->out = net_sendbuffer_create(outio, 0);
close(out[1]);