Fixing a few typos

Signed-off-by: Mohammad Banikazemi <mbanikazemi@gmail.com>
This commit is contained in:
Mohammad Banikazemi 2015-04-20 13:08:09 -04:00
parent 91eef607d0
commit dee9e06bbb
1 changed files with 4 additions and 4 deletions

View File

@ -19,10 +19,10 @@ type bridgeInterface struct {
bridgeIPv6 *net.IPNet bridgeIPv6 *net.IPNet
} }
// NewInterface creates a new bridge interface structure. It attempts to find // newInterface creates a new bridge interface structure. It attempts to find
// an already existing device identified by the Configuration BridgeName field, // an already existing device identified by the Configuration BridgeName field,
// or the default bridge name when unspecified), but doesn't attempt to create // or the default bridge name when unspecified), but doesn't attempt to create
// on when missing // one when missing
func newInterface(config *Configuration) *bridgeInterface { func newInterface(config *Configuration) *bridgeInterface {
i := &bridgeInterface{} i := &bridgeInterface{}
@ -36,12 +36,12 @@ func newInterface(config *Configuration) *bridgeInterface {
return i return i
} }
// Exists indicates if the existing bridge interface exists on the system. // exists indicates if the existing bridge interface exists on the system.
func (i *bridgeInterface) exists() bool { func (i *bridgeInterface) exists() bool {
return i.Link != nil return i.Link != nil
} }
// Addresses returns a single IPv4 address and all IPv6 addresses for the // addresses returns a single IPv4 address and all IPv6 addresses for the
// bridge interface. // bridge interface.
func (i *bridgeInterface) addresses() (netlink.Addr, []netlink.Addr, error) { func (i *bridgeInterface) addresses() (netlink.Addr, []netlink.Addr, error) {
v4addr, err := netlink.AddrList(i.Link, netlink.FAMILY_V4) v4addr, err := netlink.AddrList(i.Link, netlink.FAMILY_V4)