aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2021-02-16 18:50:15 +0100
committerlaforge <laforge@osmocom.org>2021-02-16 19:03:21 +0000
commit37202770e5829ee4c833c54793b1e4b2083e032a (patch)
tree39ec77b2479420149bc60ca71ddb44218e2d168c
parent7c05216e0169dd74de1f3f4911d2345917a0a570 (diff)
NS_Provider_FR: Fix typos in log lines
-rw-r--r--library/NS_Provider_FR.ttcn6
1 files 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);
}