diff options
author | Solar Designer <solar@openwall.com> | 2004-01-26 04:22:18 +0300 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-02-01 17:40:02 +0000 |
commit | 2359510ddb135dcc6e80153f51cff0a97b20b597 (patch) | |
tree | b074c5df813a1e3e529f0330620b456ecc4988e6 /ext/Socket | |
parent | a95a5f75a0e72874474834cd9e274afa0f23b6d8 (diff) | |
download | perl-2359510ddb135dcc6e80153f51cff0a97b20b597.tar.gz |
Re: [perl #15063] /tmp issues
Message-ID: <20040125222218.GA13499@openwall.com>
Remove insecure usage of /tmp from code and documentation
p4raw-id: //depot/perl@22258
Diffstat (limited to 'ext/Socket')
-rw-r--r-- | ext/Socket/Socket.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Socket/Socket.pm b/ext/Socket/Socket.pm index 0a41670aeb..07ec8ec63f 100644 --- a/ext/Socket/Socket.pm +++ b/ext/Socket/Socket.pm @@ -32,8 +32,8 @@ Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C socket.h def $proto = getprotobyname('tcp'); socket(Socket_Handle, PF_UNIX, SOCK_STREAM, $proto); - unlink('/tmp/usock'); - $sun = sockaddr_un('/tmp/usock'); + unlink('/var/run/usock'); + $sun = sockaddr_un('/var/run/usock'); connect(Socket_Handle,$sun); =head1 DESCRIPTION |