summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorMartin Blapp <mbr@FreeBSD.org>2002-10-22 23:14:19 +0000
committerMartin Blapp <mbr@FreeBSD.org>2002-10-22 23:14:19 +0000
commit1257bb9946065e859e78fa0d109ff06b2b264785 (patch)
treeecc545b688be6a2a84fc6ce8e048b65596551264 /editors
parentNetBSD, IRIX and FreeBSD support got removed. Add it again. (diff)
Use SUN_LEN makro for unix domain socket name lenght.
Notes
Notes: svn path=/head/; revision=68618
Diffstat (limited to 'editors')
-rw-r--r--editors/openoffice-1.1-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice-1.1/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice-2.0-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice-3-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice-3/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-1.1-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-1.1/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-2-RC/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-2-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-2.0-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-2.0/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-2/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-3-RC/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-3-devel/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-3/files/patch-sal+osl+unx+pipe.c6
-rw-r--r--editors/openoffice.org-vcltesttool/files/patch-sal+osl+unx+pipe.c6
17 files changed, 51 insertions, 51 deletions
diff --git a/editors/openoffice-1.1-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice-1.1-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice-1.1-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice-1.1-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice-1.1/files/patch-sal+osl+unx+pipe.c b/editors/openoffice-1.1/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice-1.1/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice-1.1/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice-2.0-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice-2.0-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice-2.0-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice-2.0-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice-3-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice-3-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice-3-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice-3-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice-3/files/patch-sal+osl+unx+pipe.c b/editors/openoffice-3/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice-3/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice-3/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-1.1-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-1.1-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-1.1-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-1.1-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-1.1/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-1.1/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-1.1/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-1.1/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-2-RC/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-2-RC/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-2-RC/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-2-RC/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-2-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-2-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-2-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-2-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-2.0-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-2.0-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-2.0-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-2.0-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-2.0/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-2.0/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-2.0/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-2.0/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-2/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-2/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-2/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-2/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-3-RC/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-3-RC/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-3-RC/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-3-RC/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-3-devel/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-3-devel/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-3-devel/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-3-devel/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-3/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-3/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-3/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-3/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif
diff --git a/editors/openoffice.org-vcltesttool/files/patch-sal+osl+unx+pipe.c b/editors/openoffice.org-vcltesttool/files/patch-sal+osl+unx+pipe.c
index 217bd0be4d58..4aa7b8af1a61 100644
--- a/editors/openoffice.org-vcltesttool/files/patch-sal+osl+unx+pipe.c
+++ b/editors/openoffice.org-vcltesttool/files/patch-sal+osl+unx+pipe.c
@@ -1,11 +1,11 @@
---- ../sal/osl/unx/pipe.c.orig Mon Feb 18 13:48:55 2002
-+++ ../sal/osl/unx/pipe.c Wed Apr 3 00:59:15 2002
+--- ../sal/osl/unx/pipe.c.orig Thu Jul 11 16:01:39 2002
++++ ../sal/osl/unx/pipe.c Fri Oct 18 19:56:38 2002
@@ -264,7 +264,11 @@
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, name, sizeof(addr.sun_path));
+#if defined(FREEBSD)
-+ len = SUN_LEN(&addr);
++ len = SUN_LEN(&addr);
+#else
len = sizeof(addr);
+#endif