projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
faa783a
)
One more typo, reported by H.Merijn Brand
author
Abigail
<abigail@abigail.be>
Tue, 9 Nov 2010 15:47:11 +0000
(16:47 +0100)
committer
Abigail
<abigail@abigail.be>
Tue, 9 Nov 2010 15:47:11 +0000
(16:47 +0100)
pod/perlipc.pod
patch
|
blob
|
history
diff --git
a/pod/perlipc.pod
b/pod/perlipc.pod
index
bd0db2e
..
8aa5005
100644
(file)
--- a/
pod/perlipc.pod
+++ b/
pod/perlipc.pod
@@
-573,7
+573,7
@@
output doesn't wind up on the user's terminal.
open(STDIN, "< /dev/null") || die "can't read /dev/null: $!";
open(STDOUT, "> /dev/null") || die "can't write to /dev/null: $!";
defined(my $pid = fork()) || die "can't fork: $!";
- exit if $pid; # non-zero now means I am the paren
+ exit if $pid; # non-zero now means I am the paren
t
(setsid() != -1) || die "Can't start a new session: $!"
open(STDERR, ">&STDOUT") || die "can't dup stdout: $!";
}