summaryrefslogtreecommitdiffstats
path: root/gatchat/gsmdial.c
diff options
context:
space:
mode:
Diffstat (limited to 'gatchat/gsmdial.c')
-rw-r--r--gatchat/gsmdial.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gatchat/gsmdial.c b/gatchat/gsmdial.c
index fd9b73bc..cfdec87e 100644
--- a/gatchat/gsmdial.c
+++ b/gatchat/gsmdial.c
@@ -241,7 +241,7 @@ static void ppp_disconnect(GAtPPPDisconnectReason reason, gpointer user_data)
static void connect_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
- GIOChannel *channel;
+ GAtIO *io;
if (!ok) {
g_print("Unable to define context\n");
@@ -249,7 +249,7 @@ static void connect_cb(gboolean ok, GAtResult *result, gpointer user_data)
}
/* get the data IO channel */
- channel = g_at_chat_get_channel(modem);
+ io = g_at_chat_get_io(modem);
/*
* shutdown gatchat or else it tries to take all the input
@@ -259,7 +259,7 @@ static void connect_cb(gboolean ok, GAtResult *result, gpointer user_data)
g_at_chat_suspend(modem);
/* open ppp */
- ppp = g_at_ppp_new(channel);
+ ppp = g_at_ppp_new_from_io(io);
if (!ppp) {
g_print("Unable to create PPP object\n");
exit(1);