Mark a mesh path to a mesh gate with a 'G'.

Approved by:	adrian (mentor)
This commit is contained in:
Monthadar Al Jaberi 2013-02-07 21:23:03 +00:00
parent c81ceff7c7
commit 8904a305ae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246505

View File

@ -4025,7 +4025,9 @@ list_mesh(int s)
(rt->imr_flags & IEEE80211_MESHRT_FLAGS_VALID) ?
'V' : '!',
(rt->imr_flags & IEEE80211_MESHRT_FLAGS_PROXY) ?
'P' : ' ');
'P' :
(rt->imr_flags & IEEE80211_MESHRT_FLAGS_GATE) ?
'G' :' ');
}
}