projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
cd2dd2f
)
make Sys::Hostname safe against C<$SIG{CHLD}='IGNORE'> (suggested
Gurusamy Sarathy [Wed, 7 Jul 1999 02:03:34 +0000 (
02:03
+0000)]
by David Muir Sharnoff <muir@idiom.com>)
p4raw-id: //depot/perl@3631
lib/Sys/Hostname.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Sys/Hostname.pm
b/lib/Sys/Hostname.pm
index
95f9a99
..
e96822e
100644
(file)
--- a/
lib/Sys/Hostname.pm
+++ b/
lib/Sys/Hostname.pm
@@
-94,6
+94,7
@@
sub hostname {
# method 3 - trusty old hostname command
|| eval {
local $SIG{__DIE__};
+ local $SIG{CHLD};
$host = `(hostname) 2>/dev/null`; # bsdish
}