Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1df854e authored by Elliott Hughes's avatar Elliott Hughes
Browse files

bionic's struct stat is now POSIX-compliant.

Right now we still have the kernel names, but they're only there by
"virtue" of macro namespace pollution, so I'd like to get rid of them.

Bug: 18298106
Change-Id: Ifed0b3a9238c79a99d8a2b62e0f5897c50a725d1
parent 65a83bdf
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -391,12 +391,12 @@ static void attr_from_stat(struct fuse_attr *attr, const struct stat *s, const s
    attr->ino = node->nid;
    attr->size = s->st_size;
    attr->blocks = s->st_blocks;
    attr->atime = s->st_atime;
    attr->mtime = s->st_mtime;
    attr->ctime = s->st_ctime;
    attr->atimensec = s->st_atime_nsec;
    attr->mtimensec = s->st_mtime_nsec;
    attr->ctimensec = s->st_ctime_nsec;
    attr->atime = s->st_atim.tv_sec;
    attr->mtime = s->st_mtim.tv_sec;
    attr->ctime = s->st_ctim.tv_sec;
    attr->atimensec = s->st_atim.tv_nsec;
    attr->mtimensec = s->st_mtim.tv_nsec;
    attr->ctimensec = s->st_ctim.tv_nsec;
    attr->mode = s->st_mode;
    attr->nlink = s->st_nlink;