diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2002-03-04 21:46:59 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2002-03-04 21:46:59 +0000 |
commit | 53c240bb36169bb10ec6e5e1a6d08d30e4b60fe7 (patch) | |
tree | 5fc0cd10891f324e300f41d682e0239bd96451b4 /editors/openoffice/files/patch-sal::osl::unx::pipe.c | |
parent | Update to 1.3.14. URGH, I donno how it missed the last GNOME 2 beta update (diff) |
Upgrade to 641c source, add gcc2_freebsd_intel and gcc3_freebsd_intel cpp_uno
source
Diffstat (limited to 'editors/openoffice/files/patch-sal::osl::unx::pipe.c')
-rw-r--r-- | editors/openoffice/files/patch-sal::osl::unx::pipe.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/editors/openoffice/files/patch-sal::osl::unx::pipe.c b/editors/openoffice/files/patch-sal::osl::unx::pipe.c new file mode 100644 index 000000000000..6802487470a2 --- /dev/null +++ b/editors/openoffice/files/patch-sal::osl::unx::pipe.c @@ -0,0 +1,14 @@ +--- ../sal/osl/unx/pipe.c.orig Tue May 29 07:38:32 2001 ++++ ../sal/osl/unx/pipe.c +@@ -264,7 +264,11 @@ + + addr.sun_family = AF_UNIX; + strcpy(addr.sun_path, name); ++#if defined(FREEBSD) ++ len = SUN_LEN(&addr); ++#else + len = sizeof(addr.sun_family) + strlen(addr.sun_path); ++#endif + + if ( Options & osl_Pipe_CREATE ) + { |