NS_Provider_FR: Fix typos in log lines

Change-Id: I5661ba61dc0de78bc480c49d4aba6436a8694706
This commit is contained in:
Harald Welte 2021-02-16 18:50:15 +01:00 committed by laforge
parent 7c05216e01
commit 37202770e5
1 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ function main(NSVCConfiguration config, NSConfiguration nsconfig, charstring id)
alt {
[not link_available] FR.receive(FrameRelayFrame:?) -> value rx_fr {
log("Dropoing Rx Msg because FR link not yet available", rx_fr);
log("Dropping Rx Msg because FR link not yet available", rx_fr);
/* this can happen if the remote side has not yet recognized the
* link is dead; don' fail here */
}
@ -60,10 +60,10 @@ function main(NSVCConfiguration config, NSConfiguration nsconfig, charstring id)
NSE.send(ns);
}
[not pvc_active] FR.receive(tr_FR(config.provider.fr.dlci)) -> value rx_fr {
log("Dropoing Rx Msg because FR DLC not yet available", rx_fr);
log("Dropping Rx Msg because FR DLC not yet available", rx_fr);
}
[] FR.receive(tr_FR(?)) -> value rx_fr {
log("Dropoing Rx Msg because DLCI unknown", rx_fr);
log("Dropping Rx Msg because DLCI unknown", rx_fr);
setverdict(fail);
}