From be47d6eceffd2c5dbbc1566d5eea490527fb2bd4 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 16 Jul 2013 06:54:42 +0000 Subject: libgo: Update to Go 1.1.1. From-SVN: r200974 --- libgo/go/net/interface_netbsd.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'libgo/go/net/interface_netbsd.go') diff --git a/libgo/go/net/interface_netbsd.go b/libgo/go/net/interface_netbsd.go index 4150e9a..c9ce5a7 100644 --- a/libgo/go/net/interface_netbsd.go +++ b/libgo/go/net/interface_netbsd.go @@ -2,13 +2,11 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Network interface identification for NetBSD - package net -// If the ifindex is zero, interfaceMulticastAddrTable returns -// addresses for all network interfaces. Otherwise it returns -// addresses for a specific interface. -func interfaceMulticastAddrTable(ifindex int) ([]Addr, error) { +// interfaceMulticastAddrTable returns addresses for a specific +// interface. +func interfaceMulticastAddrTable(ifi *Interface) ([]Addr, error) { + // TODO(mikio): Implement this like other platforms. return nil, nil } -- cgit v1.1