From: Les Peters Date: Tue, 16 Jun 1998 16:31:40 +0000 (-0400) Subject: hand apply whitespace-mutiliated and reversed patch X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=26893f8d4c7b51d5bfa4e21e347c404f5c2964af;p=p5sagit%2Fp5-mst-13.2.git 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 --- diff --git a/ext/Socket/Socket.xs b/ext/Socket/Socket.xs index 09b41d3..82ed442 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