This is an automated email from the ASF dual-hosted git repository. linguini pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit ba8823534cb42a5595d492fd13d94e11506824a9 Author: daniel-geotab <[email protected]> AuthorDate: Thu Oct 30 16:33:45 2025 -0400 Revert "ppp: Reformat to match nuttx coding style" This reverts commit 0c734ca62b96391b25a077229d04da66149391b1. Signed-off-by: daniellizewski <[email protected]> --- netutils/pppd/lcp.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/netutils/pppd/lcp.c b/netutils/pppd/lcp.c index 65d50343b..4637a7a4a 100644 --- a/netutils/pppd/lcp.c +++ b/netutils/pppd/lcp.c @@ -135,11 +135,10 @@ void lcp_rx(struct ppp_context_s *ctx, uint8_t * buffer, uint16_t count) /* In case of new peer connection */ ipcp_init(ctx); - - /* Clear LCP state to keep it in negotiation phase. LCP_TX_UP will be - * re-set once a CONF_ACK is received. - */ - + + /* Clear LCP state to keep it in negotiation phase. LCP_TX_UP will be re-set + * once a CONF_ACK is received. */ + ctx->lcp_state &= ~LCP_TX_UP; DEBUG1(("received [LCP Config Request id %u\n", id));
