diff options
author | timh <none@none> | 2008-04-27 10:20:38 -0700 |
---|---|---|
committer | timh <none@none> | 2008-04-27 10:20:38 -0700 |
commit | ab04eb8ef60d9dc9614d6cccffc474f24ca1d162 (patch) | |
tree | 361f353d229106ed93d3fa71ef005be8c7ebbc72 /usr/src/uts/common/fs/lookup.c | |
parent | dc5415b5ee3585f3fb9e8f0a33ea3f5926e13999 (diff) | |
download | illumos-joyent-ab04eb8ef60d9dc9614d6cccffc474f24ca1d162.tar.gz |
6654808 FIGNORECASE lookups in a zfs xattr dir don't provide 'realname' data
6666748 System panic occurred when attempting to view .zfs snapshot directory from CIFS client.
6693201 libzpool needlessly defines u8_textprep_str()
6694236 case-insensitive zfs file system doesn't work when created on sparc and then imported on x86
Diffstat (limited to 'usr/src/uts/common/fs/lookup.c')
-rw-r--r-- | usr/src/uts/common/fs/lookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/fs/lookup.c b/usr/src/uts/common/fs/lookup.c index 5361be7466..4fa4ad57f5 100644 --- a/usr/src/uts/common/fs/lookup.c +++ b/usr/src/uts/common/fs/lookup.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -525,7 +525,7 @@ checkforroot: * Return the case-preserved name * within the resolved path. */ - error = copystr(pp->pn_path, + error = copystr(pp->pn_buf, rpnp->pn_path + rpnp->pn_pathlen, rpnp->pn_bufsize - rpnp->pn_pathlen, &len); } else { |