Fix state name
Dead and Initial happen to both equal 0, so this is actually a no-behavior-change.
This commit is contained in:
parent
fbf0c191e1
commit
92733074db
1 changed files with 3 additions and 3 deletions
6
ppp.c
6
ppp.c
|
|
@ -426,9 +426,9 @@ void lcp_restart(sessionidt s)
|
|||
{
|
||||
session[s].ppp.phase = Establish;
|
||||
// This-Layer-Down
|
||||
change_state(s, ipcp, Dead);
|
||||
change_state(s, ipv6cp, Dead);
|
||||
change_state(s, ccp, Dead);
|
||||
change_state(s, ipcp, Initial);
|
||||
change_state(s, ipv6cp, Initial);
|
||||
change_state(s, ccp, Initial);
|
||||
}
|
||||
|
||||
static uint8_t *ppp_conf_rej(sessionidt s, uint8_t *buf, size_t blen, uint16_t mtype,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue