Skip to content

Commit e03d51e

Browse files
committed
---
yaml --- r: 7877 b: refs/heads/snap-stage3 c: 6b42e6b h: refs/heads/master i: 7875: 878f059 v: v3
1 parent a73268e commit e03d51e

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: 3d76922f973caa358cf803d5539dbfadeb3ca830
4+
refs/heads/snap-stage3: 6b42e6b29818a4d08da65d1a69cc7e6c2c894062
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
@@ -117,7 +117,7 @@ fn test_connect() {
117117
connect(thread, 0u32, "74.125.224.146", chan);
118118
alt comm::recv(port) {
119119
connected(cd) {
120-
close_connection(thread, cd);
120+
close_connection(thread, 0u32);
121121
}
122122
}
123123
join_thread(thread);
@@ -134,10 +134,10 @@ fn test_http() {
134134
connect(thread, 0u32, "74.125.224.146", chan);
135135
alt comm::recv(port) {
136136
connected(cd) {
137-
write(thread, cd, str::bytes("GET / HTTP/1.0\n\n"), chan);
137+
write(thread, 0u32, str::bytes("GET / HTTP/1.0\n\n"), chan);
138138
alt comm::recv(port) {
139139
wrote(cd) {
140-
read_start(thread, cd, chan);
140+
read_start(thread, 0u32, chan);
141141
let keep_going = true;
142142
while keep_going {
143143
alt comm::recv(port) {
@@ -157,7 +157,7 @@ fn test_http() {
157157
}
158158
}
159159
}
160-
close_connection(thread, cd);
160+
close_connection(thread, 0u32);
161161
}
162162
}
163163
}

0 commit comments

Comments
 (0)