Update netlink_unspecified with new Addr function prototypes

At some point the function prototypes for the `AddrAdd` and `AddrDel`
functions got out of sync with addr_linix.go.  This patch fixes it.
This commit is contained in:
Ethan J. Jackson 2016-12-19 18:38:47 -05:00 committed by Vish Ishaya
parent 13fb20a978
commit 9f67bd458b

View File

@ -143,11 +143,11 @@ func LinkList() ([]Link, error) {
return nil, ErrNotImplemented
}
func AddrAdd(link *Link, addr *Addr) error {
func AddrAdd(link Link, addr *Addr) error {
return ErrNotImplemented
}
func AddrDel(link *Link, addr *Addr) error {
func AddrDel(link Link, addr *Addr) error {
return ErrNotImplemented
}