Skip to content

Commit 5c2a0c9

Browse files
committed
Fix file descriptor value
1 parent bb5614b commit 5c2a0c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

reset/rst-sync-est-fin-wait-1.pkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
// Our application writes 1000 bytes
2424
// This should produce a runtime error, since the connection has been reset.
25-
0.120 write(4, ..., 1000) = 1000
25+
0.120 write(3, ..., 1000) = -1

reset/rst-sync-est-fin-wait-2.pkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
// Our application writes 1000 bytes
2727
// This should produce a runtime error, since the connection has been reset.
28-
0.120 write(4, ..., 1000) = 1000
28+
0.120 write(3, ..., 1000) = -1

reset/rst-sync-est-time-wait.pkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434

3535
// Our application writes 1000 bytes
3636
// This should produce a runtime error, since the connection has been reset.
37-
0.130 write(4, ..., 1000) = 1000
37+
0.130 write(3, ..., 1000) = -1

0 commit comments

Comments
 (0)