diff options
author | Abigail <abigail@abigail.be> | 2010-11-09 16:47:11 +0100 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2010-11-09 16:47:11 +0100 |
commit | c0919ef1a8c9478fa54672f6ef6755f8bbc5091f (patch) | |
tree | 1bfd758b706b482ec00cacb2e824cbb9d3642322 /pod/perlipc.pod | |
parent | faa783aca54bc58966dd40234b2b711114f9ca60 (diff) | |
download | perl-c0919ef1a8c9478fa54672f6ef6755f8bbc5091f.tar.gz |
One more typo, reported by H.Merijn Brand
Diffstat (limited to 'pod/perlipc.pod')
-rw-r--r-- | pod/perlipc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlipc.pod b/pod/perlipc.pod index bd0db2e1ad..8aa500584c 100644 --- 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 parent (setsid() != -1) || die "Can't start a new session: $!" open(STDERR, ">&STDOUT") || die "can't dup stdout: $!"; } |