[SCM] Socket Wrapper Repository - branch master updated
Andreas Schneider
asn at samba.org
Mon Jun 10 09:08:05 UTC 2024
The branch, master has been updated
via c666ba4 tests: Define PATH_MAX for Hurd.
from d07136e Bump version to 1.4.2
https://git.samba.org/?p=socket_wrapper.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit c666ba444b46d84c0c49f2c70c9b2c3cb1f6f974
Author: Simon Josefsson <simon at josefsson.org>
Date: Sat Aug 19 11:25:56 2023 +0200
tests: Define PATH_MAX for Hurd.
Signed-off-by: Simon Josefsson <simon at josefsson.org>
Reviewed-by: Andreas Schneider <asn at samba.org>
Reviewed-by: Stefan Metzmacher <metze at samba.org>
-----------------------------------------------------------------------
Summary of changes:
tests/test_fcntl_lock.c | 4 ++++
tests/test_ioctl.c | 4 ++++
2 files changed, 8 insertions(+)
Changeset truncated at 500 lines:
diff --git a/tests/test_fcntl_lock.c b/tests/test_fcntl_lock.c
index 0c172d6..5646f43 100644
--- a/tests/test_fcntl_lock.c
+++ b/tests/test_fcntl_lock.c
@@ -9,6 +9,10 @@
#include <fcntl.h>
#include <errno.h>
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
static int setup(void **state)
{
char test_tmpdir[256];
diff --git a/tests/test_ioctl.c b/tests/test_ioctl.c
index aebff91..25bec38 100644
--- a/tests/test_ioctl.c
+++ b/tests/test_ioctl.c
@@ -14,6 +14,10 @@
#include <limits.h>
#include <unistd.h>
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
static int setup(void **state)
{
char test_tmpdir[256];
--
Socket Wrapper Repository
More information about the samba-cvs
mailing list