Skip to content

Commit bb9933f

Browse files
committed
---
yaml --- r: 187320 b: refs/heads/try c: 0bd1565 h: refs/heads/master v: v3
1 parent cfc425e commit bb9933f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: b4c965ee803a4521d8b4575f634e036f93e408f3
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 3a96d6a9818fe2affc98a187fb1065120458cee9
5-
refs/heads/try: 0c6d1f3b3d22f45c53c8be0a799a6cc42bc752d5
5+
refs/heads/try: 0bd15657d93c932611f3aee351b6521cdfa77731
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/libstd/process.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,11 +355,11 @@ impl Stdio {
355355
pub fn capture() -> Stdio { Stdio(StdioImp::Capture) }
356356

357357
/// The child inherits from the corresponding parent descriptor.
358-
pub fn inherit() -> Stdio { Stdio(StdioImp::Capture) }
358+
pub fn inherit() -> Stdio { Stdio(StdioImp::Inherit) }
359359

360360
/// This stream will be ignored. This is the equivalent of attaching the
361361
/// stream to `/dev/null`
362-
pub fn null() -> Stdio { Stdio(StdioImp::Capture) }
362+
pub fn null() -> Stdio { Stdio(StdioImp::Null) }
363363
}
364364

365365
/// Describes the result of a process after it has terminated.

0 commit comments

Comments
 (0)