summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/xattr.idl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-10-16 17:17:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:44:49 -0500
commita0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f (patch)
tree04b2c1c837d70b63130e0c32e20a84e50b8ffe12 /source4/librpc/idl/xattr.idl
parentc008f951cff74e5218c7ef7bbc90487433ab72c5 (diff)
downloadsamba-a0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f.tar.gz
samba-a0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f.tar.bz2
samba-a0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f.zip
r11098: Replace string with [string]
(This used to be commit 1ac8c96349c1241f75f7a133cfefa0df5aaae18e)
Diffstat (limited to 'source4/librpc/idl/xattr.idl')
-rw-r--r--source4/librpc/idl/xattr.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/librpc/idl/xattr.idl b/source4/librpc/idl/xattr.idl
index ae2a084c21..48d0c76183 100644
--- a/source4/librpc/idl/xattr.idl
+++ b/source4/librpc/idl/xattr.idl
@@ -14,8 +14,8 @@
]
interface xattr
{
- const string XATTR_DOSATTRIB_NAME = "user.DosAttrib";
- const string XATTR_DOSATTRIB_ESTIMATED_SIZE = 64;
+ const char *XATTR_DOSATTRIB_NAME = "user.DosAttrib";
+ const int XATTR_DOSATTRIB_ESTIMATED_SIZE = 64;
/* we store basic dos attributes in a DosAttrib xattr. By
using a union we can cope with new version of this
@@ -56,7 +56,7 @@ interface xattr
/* we store DOS style extended attributes in a DosEAs xattr */
- const string XATTR_DOSEAS_NAME = "user.DosEAs";
+ const char *XATTR_DOSEAS_NAME = "user.DosEAs";
typedef struct {
utf8string name;
@@ -72,12 +72,12 @@ interface xattr
the streams themselves are stored in
user.DosStream.STREAMNAME or in external files, according
to the flags */
- const string XATTR_DOSSTREAMS_NAME = "user.DosStreams";
+ const char *XATTR_DOSSTREAMS_NAME = "user.DosStreams";
const int XATTR_STREAM_FLAG_INTERNAL = 0x00000001;
/* stream data is stored in attributes with the given prefix */
- const string XATTR_DOSSTREAM_PREFIX = "user.DosStream.";
+ const char *XATTR_DOSSTREAM_PREFIX = "user.DosStream.";
const int XATTR_MAX_STREAM_SIZE = 0x4000;
@@ -100,7 +100,7 @@ interface xattr
we put this xattr in the security namespace to ensure that
only trusted users can write to the ACL
*/
- const string XATTR_NTACL_NAME = "security.NTACL";
+ const char *XATTR_NTACL_NAME = "security.NTACL";
typedef [switch_type(uint16)] union {
[case(1)] security_descriptor *sd;