dfc89b3b4d
productivity suite. It includes the key desktop applications, such as a word processor, spreadsheet, presentation manager, and drawing program, with a user interface and feature set similar to other office suites.
16 lines
397 B
Text
16 lines
397 B
Text
$NetBSD: patch-bk,v 1.1.1.1 2002/02/13 18:09:22 mrauch Exp $
|
|
|
|
--- ../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(NETBSD)
|
|
+ len = sizeof(addr);
|
|
+#else
|
|
len = sizeof(addr.sun_family) + strlen(addr.sun_path);
|
|
+#endif
|
|
|
|
if ( Options & osl_Pipe_CREATE )
|
|
{
|