Skip to content

Commit 102174f

Browse files
committed
---
yaml --- r: 10857 b: refs/heads/master c: 6b42e6b h: refs/heads/master i: 10855: 6a53958 v: v3
1 parent db92012 commit 102174f

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,5 +1,5 @@
11
---
2-
refs/heads/master: 3d76922f973caa358cf803d5539dbfadeb3ca830
2+
refs/heads/master: 6b42e6b29818a4d08da65d1a69cc7e6c2c894062
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/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)