diff options
Diffstat (limited to 'dhcpv6/future.go')
-rw-r--r-- | dhcpv6/future.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpv6/future.go b/dhcpv6/future.go index b431419..d0ae6cd 100644 --- a/dhcpv6/future.go +++ b/dhcpv6/future.go @@ -35,7 +35,7 @@ func (r *response) Error() error { // NewFuture creates a new future, which can be written to func NewFuture() chan Response { - return make(chan Response) + return make(chan Response, 1) } // NewResponse creates a new future response |