diff options
author | Steve French <sfrench@us.ibm.com> | 2007-10-23 21:22:55 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-10-23 21:22:55 +0000 |
commit | 44093ca2fef3c52dc7d186116862d74f9a676e0f (patch) | |
tree | 18e03ae747d936b9d9de34abfea38aecb020956c /fs/cifs/dir.c | |
parent | c94897790e7c67dcfe3a0b6f035996398c268313 (diff) | |
download | op-kernel-dev-44093ca2fef3c52dc7d186116862d74f9a676e0f.zip op-kernel-dev-44093ca2fef3c52dc7d186116862d74f9a676e0f.tar.gz |
[CIFS] acl support part 6
CC: Shirish Pargaonkar <shirishp@us.ibm.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/dir.c')
-rw-r--r-- | fs/cifs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c index 793404b..37dc97a 100644 --- a/fs/cifs/dir.c +++ b/fs/cifs/dir.c @@ -593,7 +593,7 @@ static int cifs_ci_compare(struct dentry *dentry, struct qstr *a, * case take precedence. If a is not a negative dentry, this * should have no side effects */ - memcpy((unsigned char *)a->name, b->name, a->len); + memcpy(a->name, b->name, a->len); return 0; } return 1; |