Skip to content

Commit 5776116

Browse files
committed
---
yaml --- r: 7844 b: refs/heads/snap-stage3 c: 335302f h: refs/heads/master v: v3
1 parent 7e20513 commit 5776116

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 9e39219d9b5466739d12bd60c74c21e3ab2483e7
4+
refs/heads/snap-stage3: 335302f08dbdffd218cbc9fcbfb650cfa273889b
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/libstd/uvtmp.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ fn test_connect() {
106106
connect(thread, 0u32, "74.125.224.146", chan);
107107
alt comm::recv(port) {
108108
connected(cd) {
109-
close_connection(thread, cd);
109+
close_connection(thread, 0u32);
110110
}
111111
}
112112
join_thread(thread);
@@ -123,10 +123,10 @@ fn test_http() {
123123
connect(thread, 0u32, "74.125.224.146", chan);
124124
alt comm::recv(port) {
125125
connected(cd) {
126-
write(thread, cd, str::bytes("GET / HTTP/1.0\n\n"), chan);
126+
write(thread, 0u32, str::bytes("GET / HTTP/1.0\n\n"), chan);
127127
alt comm::recv(port) {
128128
wrote(cd) {
129-
read_start(thread, cd, chan);
129+
read_start(thread, 0u32, chan);
130130
let keep_going = true;
131131
while keep_going {
132132
alt comm::recv(port) {
@@ -146,7 +146,7 @@ fn test_http() {
146146
}
147147
}
148148
}
149-
close_connection(thread, cd);
149+
close_connection(thread, 0u32);
150150
}
151151
}
152152
}

0 commit comments

Comments
 (0)