aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-05-24 19:26:48 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2017-05-24 19:26:48 +0200
commit27b022e0c461465995a8f834fadc7a58b37ddf26 (patch)
tree2821393fac9423916052f169dfed58f77b3dd3d7
parent3aeb9301f4075f3211bdeca0140c5571f06219be (diff)
phy_link: Fix typo in state being printed
-rw-r--r--src/common/phy_link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/phy_link.c b/src/common/phy_link.c
index 25b7e5d2..588fcc91 100644
--- a/src/common/phy_link.c
+++ b/src/common/phy_link.c
@@ -44,7 +44,7 @@ struct phy_link *phy_link_create(void *ctx, int num)
const struct value_string phy_link_state_vals[] = {
{ PHY_LINK_SHUTDOWN, "shutdown" },
- { PHY_LINK_CONNECTING, "connectiong" },
+ { PHY_LINK_CONNECTING, "connecting" },
{ PHY_LINK_CONNECTED, "connected" },
{ 0, NULL }
};