man8/bridge.8: fix which one of self/master is default for "bridge fdb"

The bridge program does:

fdb_modify:
	/* Assume self */
	if (!(req.ndm.ndm_flags&(NTF_SELF|NTF_MASTER)))
		req.ndm.ndm_flags |= NTF_SELF;

which is clearly against the documented behavior. The only thing we can
do, sadly, is update the documentation.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Vladimir Oltean 2021-02-11 12:45:00 +02:00 committed by Stephen Hemminger
parent 10130bfafe
commit b64ceb687d

View File

@ -533,11 +533,12 @@ specified.
.sp .sp
.B self .B self
- the address is associated with the port drivers fdb. Usually hardware. - the address is associated with the port drivers fdb. Usually hardware
(default).
.sp .sp
.B master .B master
- the address is associated with master devices fdb. Usually software (default). - the address is associated with master devices fdb. Usually software.
.sp .sp
.B router .B router