diff options
-rw-r--r-- | gatchat/ppp_ipcp.c | 12 | ||||
-rw-r--r-- | gatchat/ppp_lcp.c | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/gatchat/ppp_ipcp.c b/gatchat/ppp_ipcp.c index 661ffa8b..a7ce2a5a 100644 --- a/gatchat/ppp_ipcp.c +++ b/gatchat/ppp_ipcp.c @@ -164,12 +164,12 @@ static void ipcp_option_process(gpointer data, gpointer user) } struct pppcp_action ipcp_action = { - .this_layer_up = ipcp_up, - .this_layer_down = ipcp_down, - .this_layer_started = ipcp_started, - .this_layer_finished = ipcp_finished, - .option_scan = ipcp_option_scan, - .option_process = ipcp_option_process, + .this_layer_up = ipcp_up, + .this_layer_down = ipcp_down, + .this_layer_started = ipcp_started, + .this_layer_finished = ipcp_finished, + .option_scan = ipcp_option_scan, + .option_process = ipcp_option_process, }; static const char *ipcp_option_strings[256] = { diff --git a/gatchat/ppp_lcp.c b/gatchat/ppp_lcp.c index 78407d41..cdfd909b 100644 --- a/gatchat/ppp_lcp.c +++ b/gatchat/ppp_lcp.c @@ -171,12 +171,12 @@ static const char *lcp_option_strings[256] = { }; struct pppcp_action lcp_action = { - .this_layer_up = lcp_up, - .this_layer_down = lcp_down, - .this_layer_started = lcp_started, - .this_layer_finished = lcp_finished, - .option_scan = lcp_option_scan, - .option_process = lcp_option_process, + .this_layer_up = lcp_up, + .this_layer_down = lcp_down, + .this_layer_started = lcp_started, + .this_layer_finished = lcp_finished, + .option_scan = lcp_option_scan, + .option_process = lcp_option_process, }; void lcp_open(struct pppcp_data *data) |