mirror of
https://github.com/openharmony/third_party_libfuse.git
synced 2026-07-21 00:45:56 -04:00
fix
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2005-12-14 Miklos Szeredi <miklos@szeredi.hu>
|
||||
|
||||
* Fix readdir() failure on x86_64, of 32bit programs compiled
|
||||
without largefile support. Bug report and help from Anthony
|
||||
Kolasny
|
||||
|
||||
2005-12-12 Miklos Szeredi <miklos@szeredi.hu>
|
||||
|
||||
* Fix stale code in ifdef FreeBSD. Patch from Csaba Henk
|
||||
|
||||
+4
-2
@@ -29,6 +29,8 @@
|
||||
|
||||
#define FUSE_MAX_PATH 4096
|
||||
|
||||
#define FUSE_UNKNOWN_INO 0xffffffff
|
||||
|
||||
struct fuse_config {
|
||||
char *llopts;
|
||||
unsigned int uid;
|
||||
@@ -1353,11 +1355,11 @@ static int fill_dir_common(struct fuse_dirhandle *dh, const char *name,
|
||||
stbuf = *statp;
|
||||
else {
|
||||
memset(&stbuf, 0, sizeof(stbuf));
|
||||
stbuf.st_ino = (ino_t) -1;
|
||||
stbuf.st_ino = FUSE_UNKNOWN_INO;
|
||||
}
|
||||
|
||||
if (!dh->fuse->conf.use_ino) {
|
||||
stbuf.st_ino = (ino_t) -1;
|
||||
stbuf.st_ino = FUSE_UNKNOWN_INO;
|
||||
if (dh->fuse->conf.readdir_ino) {
|
||||
struct node *node;
|
||||
pthread_mutex_lock(&dh->fuse->lock);
|
||||
|
||||
Reference in New Issue
Block a user