summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorLes Peters <lpeters@aol.net>1998-06-16 12:31:40 -0400
committerGurusamy Sarathy <gsar@cpan.org>1998-06-18 20:33:59 +0000
commit26893f8d4c7b51d5bfa4e21e347c404f5c2964af (patch)
treea14a5533d073d9d229d1e2c85ff94fbc09329a0d /ext
parentbb36583767bf215eda3dc8674c27c74a3313c6d7 (diff)
downloadperl-26893f8d4c7b51d5bfa4e21e347c404f5c2964af.tar.gz
hand apply whitespace-mutiliated and reversed patch
Message-Id: <199806162031.QAA08202@ds9> Subject: [PATCH 5.004_67] Socket.xs tweak for IRIX 6.3 p4raw-id: //depot/perl@1148
Diffstat (limited to 'ext')
-rw-r--r--ext/Socket/Socket.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Socket/Socket.xs b/ext/Socket/Socket.xs
index 09b41d3fce..82ed442ed6 100644
--- a/ext/Socket/Socket.xs
+++ b/ext/Socket/Socket.xs
@@ -796,7 +796,7 @@ unpack_sockaddr_un(sun_sv)
e = addr.sun_path;
while (*e && e < addr.sun_path + sizeof addr.sun_path)
++e;
- ST(0) = sv_2mortal(newSVpvn(addr.sun_path, e - addr.sun_path));
+ ST(0) = sv_2mortal(newSVpv(addr.sun_path, e - addr.sun_path));
#else
ST(0) = (SV *) not_here("unpack_sockaddr_un");
#endif