From 1368896ada9fa300bc38d9afb0e44986943cbe52 Mon Sep 17 00:00:00 2001 From: Junling Bu Date: Tue, 27 Sep 2016 21:04:20 -0700 Subject: [PATCH] mesh: (fixes #2506) Fix typo in MeshHeader TypeId string --- src/mesh/model/dot11s/dot11s-mac-header.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/model/dot11s/dot11s-mac-header.cc b/src/mesh/model/dot11s/dot11s-mac-header.cc index 795e3461e..190165da1 100644 --- a/src/mesh/model/dot11s/dot11s-mac-header.cc +++ b/src/mesh/model/dot11s/dot11s-mac-header.cc @@ -31,7 +31,7 @@ namespace dot11s { TypeId MeshHeader::GetTypeId () { - static TypeId tid = TypeId ("ns3::Dot11sMacHeader") + static TypeId tid = TypeId ("ns3::dot11s::MeshHeader") .SetParent
() .SetGroupName ("Mesh") .AddConstructor ();