summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-06-21 16:34:55 -0700
committerRuss Cox <rsc@golang.org>2010-06-21 16:34:55 -0700
commit6db1696c856048832d44862045474d5685c3a894 (patch)
tree9b7d368a62697c97a754d62676318cb48bfcca15 /test
parentc0e85b2ea902c1452254737e5dca914e0cc3ef26 (diff)
downloadgolang-6db1696c856048832d44862045474d5685c3a894.tar.gz
test: another listen on ":0" -> "127.0.0.1:0"
R=r CC=golang-dev http://codereview.appspot.com/1664043
Diffstat (limited to 'test')
-rw-r--r--test/fixedbugs/bug243.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug243.go b/test/fixedbugs/bug243.go
index 837b91035..30dbc4ed4 100644
--- a/test/fixedbugs/bug243.go
+++ b/test/fixedbugs/bug243.go
@@ -15,7 +15,7 @@ import (
func main() {
os.Stdout.Close()
- var listen, _ = net.Listen("tcp", ":0")
+ var listen, _ = net.Listen("tcp", "127.0.0.1:0")
go func() {
for {