diff options
author | Christian Ambach <ambi@samba.org> | 2011-07-15 16:16:11 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2011-07-21 14:55:09 +0200 |
commit | 62825b0ff953a7ba269ef6bc30d0470d07269e4b (patch) | |
tree | b2eab92c05554ee2594bf2f797484e4e6f1e7db9 | |
parent | 4370dc11bd3a0bb14d21be7f581f59fa7fc1d888 (diff) | |
download | samba-62825b0ff953a7ba269ef6bc30d0470d07269e4b.tar.gz samba-62825b0ff953a7ba269ef6bc30d0470d07269e4b.tar.bz2 samba-62825b0ff953a7ba269ef6bc30d0470d07269e4b.zip |
s3:modules/vfs_afsacl fix a compiler warning
-rw-r--r-- | source3/modules/vfs_afsacl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_afsacl.c b/source3/modules/vfs_afsacl.c index 8923c62b4c..6301469db0 100644 --- a/source3/modules/vfs_afsacl.c +++ b/source3/modules/vfs_afsacl.c @@ -828,7 +828,7 @@ static bool nt_to_afs_acl(const char *filename, return true; } -static bool afs_get_afs_acl(char *filename, struct afs_acl *acl) +static bool afs_get_afs_acl(const char *filename, struct afs_acl *acl) { struct afs_iob iob; |