Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/netif/ppp/pppapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ pppapi_set_default(ppp_pcb *pcb)
}

#if ESP_LWIP
#if PPP_AUTH_SUPPORT
/**
* Call ppp_set_auth() inside the tcpip_thread context.
*/
Expand Down Expand Up @@ -110,8 +111,8 @@ pppapi_set_auth(ppp_pcb *pcb, u8_t authtype, const char *user, const char *passw
msg.msg.msg.setauth.passwd = passwd;
tcpip_api_call(pppapi_do_ppp_set_auth, &msg.call);
}

#endif
#endif /* PPP_AUTH_SUPPORT */
#endif /* ESP_LWIP */

#if PPP_NOTIFY_PHASE
/**
Expand Down