diff options
author | anlan_cs <vic.lan@pica8.com> | 2022-06-15 07:20:25 +0200 |
---|---|---|
committer | anlan_cs <vic.lan@pica8.com> | 2022-06-16 14:39:34 +0200 |
commit | f978382d7803e3c132d0726b28a0e95a903e7181 (patch) | |
tree | 603bfc065699b1fe41a6eac011eb771370df1ac8 /lib/if.c | |
parent | Merge pull request #11407 from opensourcerouting/ldp_topo1_fix (diff) | |
download | frr-f978382d7803e3c132d0726b28a0e95a903e7181.tar.xz frr-f978382d7803e3c132d0726b28a0e95a903e7181.zip |
lib: correct two comments
Signed-off-by: anlan_cs <vic.lan@pica8.com>
Diffstat (limited to 'lib/if.c')
-rw-r--r-- | lib/if.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -711,7 +711,7 @@ int if_is_broadcast(const struct interface *ifp) return ifp->flags & IFF_BROADCAST; } -/* Does this interface support broadcast ? */ +/* Does this interface support pointopoint ? */ int if_is_pointopoint(const struct interface *ifp) { return ifp->flags & IFF_POINTOPOINT; |