From 37202770e5829ee4c833c54793b1e4b2083e032a Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 16 Feb 2021 18:50:15 +0100 Subject: NS_Provider_FR: Fix typos in log lines Change-Id: I5661ba61dc0de78bc480c49d4aba6436a8694706 --- library/NS_Provider_FR.ttcn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/NS_Provider_FR.ttcn b/library/NS_Provider_FR.ttcn index 30aadef3..eb2fb244 100644 --- a/library/NS_Provider_FR.ttcn +++ b/library/NS_Provider_FR.ttcn @@ -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); } -- cgit v1.2.3