Displaying 12 results from an estimated 12 matches for "acl_t".
Did you mean:
acl_r
2001 Sep 19
2
--with-acl-support
Dear Andrew Tridgell,
i cant compile the 2.2.1-9 package
--with-acl-support, beacuse
HAVE_SYS_ACL_H has wrong settings somewhere.
i cant fix the bug,
i just comment out the #ifdef HAVE_SYS_ACL_H line
in the source/include/includes.h
for a (i hope) good compilation.
i use acl 1.1.2 from sgi,
and the latest debian woody packages.
Regards.
Imre Szollosi
mailto:szollosi@elme.hu
2002 Nov 23
1
2.2.7 compile error using --with-acl-support on debian
...t; -DTDB_PASSWD_FILE="/etc/samba/smbpasswd.tdb"
Using LIBS = -lacl -lcups -lnsl -lcrypt -ldl -lpam
Compiling smbd/server.c
In file included from include/smb.h:462,
from include/includes.h:677,
from smbd/server.c:22:
include/vfs.h:111: parse error before `acl_t'
include/vfs.h:112: parse error before `acl_entry_t'
include/vfs.h:113: parse error before `acl_entry_t'
include/vfs.h:114: parse error before `acl_entry_t'
include/vfs.h:115: warning: no semicolon at end of struct or union
include/vfs.h:116: parse error before `*'
include/vfs.h...
2007 Jan 06
1
Re: [nut-commits] svn commit r710 - in trunk: . clients server
...> ==============================================================================
> --- trunk/server/access.c (original)
> +++ trunk/server/access.c Sat Jan 6 19:39:08 2007
> @@ -25,13 +25,14 @@
> #include "common.h"
> #include "access.h"
>
> -struct acl_t *acl_head = NULL;
> -struct access_t *access_head = NULL;
> + struct acl_t *acl_head = NULL;
> + struct access_t *access_head = NULL;
>
> +#ifdef HAVE_IPV6
> /*
> * Stolen from privoxy code :]
> */
> -int mask_cmp (const struct sockaddr_storage* ip_addr, unsigned...
2007 Jan 06
3
Re: [nut-commits] svn commit r708 - in trunk: . clients server
...gt; ==============================================================================
> --- trunk/server/access.c (original)
> +++ trunk/server/access.c Fri Jan 5 21:06:59 2007
> @@ -25,33 +25,72 @@
> #include "common.h"
> #include "access.h"
>
> - struct acl_t *acl_head = NULL;
> - struct access_t *access_head = NULL;
> +struct acl_t *acl_head = NULL;
> +struct access_t *access_head = NULL;
> +
> +/*
> + * Stolen from privoxy code :]
> + */
> +int mask_cmp (const struct sockaddr_storage* ip_addr, unsigned int prefix, const struc...
2014 Sep 22
0
[PATCH] fuse: Enable futimens test (RHBZ#1144766).
...-----
1 file changed, 5 deletions(-)
diff --git a/fuse/test-fuse.c b/fuse/test-fuse.c
index 2876dc4..1e18a75 100644
--- a/fuse/test-fuse.c
+++ b/fuse/test-fuse.c
@@ -249,9 +249,7 @@ test_fuse (void)
unsigned u, u1;
int fd;
struct timeval tv[2];
-#if 0
struct timespec ts[2];
-#endif
acl_t acl;
char *acl_text;
@@ -574,8 +572,6 @@ test_fuse (void)
return -1;
}
-#if 0
- /* Does not work! See https://bugzilla.redhat.com/show_bug.cgi?id=1144766 */
STAGE ("checking utimens");
fd = open ("timestamp", O_WRONLY|O_CREAT|O_TRUNC|O_NOCTTY|O_CLOEXEC, 0...
2003 Feb 23
6
Copying EAs and ACLs
...t for rsync to
transfer both ID's and names between systems, this will be another problem
with the NFSv4 ACL format.
(In star [6], an implementation of the PAX archive format defined in
POSIX.1-2001, for storing ACLs, we have been using a text based format which
is almost identical to what acl_to_text(3) produces, but with ID's added. The
exact format used is documented in the file README.ACL inside the package.
This approach is less powerful than NFSv4 ACLs, but good enough for POSIX ACL
backups.)
Best regards,
Andreas Gruenbacher.
REFERENCES
[1] Buck Huppmann: patch: rsync-2.5...
2002 Oct 22
1
2.2.6 configure problems
...: In function `main':
/tmp/ccycWmr0.o(.text+0xa): undefined reference to `acl_get_entry'
collect2: ld returned 1 exit status
configure: failed program was:
#line 13211 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/acl.h>
int main() {
acl_t acl; int entry_id; acl_entry_t *entry_p; return acl_get_entry(
acl, entry_id, entry_p);
; return 0; }
// simply an undefined reference....
The first one will compile fine if I add in -lattr. The second one will
result in the same error as the first if I only include -lacl. If I
include both -la...
2012 Jun 09
2
[patch] NFSv4/ZFS ACLs
This is a PoC patch for NFSv4/ZFS ACLs.
The objective of the patch is that rsync --acls support NFSv4/ZFS ACLs
without requiring a new command line option
NFSv4 ACLs can't be represented using POSIX draft ACLs, if an NFSv4 ACL is
present a separate POSIX draft ACL will not be present and there are new
APIs
to access NFSv4 ACLs. So we need to distinguish between NFSv4 ACLs and
POSIX
ACLs in
2002 Nov 21
4
ACLs with samba
Hi-
I am experiencing some odd behavior with ACLs with winbindd using Samba 2.6
on Debian Woody (kernel version 2.4.18).
1. I am unable to alter permissions from Win2K clients using the
Properties->Security interface. Is this normal? I get the "Unable to save
Permission Changes on new Folder. Access is denied." message. This occurs
with all accounts, both privileged and
2012 Nov 23
14
extended attributes wiredness
Hi,
I am using kernel 3.7-rc6.
I have written a test application for extended attributes and have for
some folders a wired behaviour:
#include <stdio.h>
#include <string.h>
#include <attr/xattr.h>
char attrs[1024];
ssize_t attrslen;
int i;
char value[1024];
ssize_t valuelen;
int main(int argc, char *argv[])
{
if (argc != 2)
{
fprintf(stderr, "Syntax: testxattr
2014 Oct 23
17
[PATCH 00/16] Small bits of non-Linux porting
Hi,
from time to time, there have been requests (or attempts, like the
mingw port posted on the list some months ago) to make libguestfs work
on OSes different than Linux. Of course this would imply using a fixed
appliance, since it is currently heavily dependent on Linux.
The attached series provides some easy changes in this direction,
resolving some of the easy issues found in porting to
2014 Sep 22
2
[PATCH] New APIs: Implement stat calls that return nanosecond timestamps (RHBZ#1144891).
...diff --git a/fuse/test-fuse.c b/fuse/test-fuse.c
index dda6fde..2876dc4 100644
--- a/fuse/test-fuse.c
+++ b/fuse/test-fuse.c
@@ -247,9 +247,9 @@ test_fuse (void)
char buf[128];
ssize_t r;
unsigned u, u1;
-#if 0
int fd;
struct timeval tv[2];
+#if 0
struct timespec ts[2];
#endif
acl_t acl;
@@ -544,7 +544,6 @@ test_fuse (void)
return -1;
}
-#if 0
STAGE ("checking utimes");
fd = open ("timestamp", O_WRONLY|O_CREAT|O_TRUNC|O_NOCTTY|O_CLOEXEC, 0644);
@@ -574,7 +573,6 @@ test_fuse (void)
(int) statbuf.st_mtime, (int) statbuf.st_mtim...