Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 834445
Collapse All | Expand All

(-)a/libfakeroot.c (-16 lines)
Lines 2586-2604 int sysinfo(int command, char *buf, long count) Link Here
2586
    }
2570
    }
2587
}
2571
}
2588
#endif
2572
#endif
2589
2590
#ifdef HAVE_OPENAT
2591
int openat(int dir_fd, const char *pathname, int flags, ...)
2592
{
2593
	mode_t mode;
2594
2595
    if (flags & O_CREAT) {
2596
        va_list args;
2597
        va_start(args, flags);
2598
        mode = va_arg(args, int);
2599
        va_end(args);
2600
    }
2601
2602
    return next_openat(dir_fd, pathname, flags, mode);
2603
}
2604
#endif
(-)a/wrapfunc.inp (-2 / +1 lines)
Lines 198-204 fchownat;int;(int dir_fd, const char *path, uid_t owner, gid_t group, int flags) Link Here
198
mkdirat;int;(int dir_fd, const char *pathname, mode_t mode);(dir_fd, pathname, mode)
198
mkdirat;int;(int dir_fd, const char *pathname, mode_t mode);(dir_fd, pathname, mode)
199
#endif /* HAVE_MKDIRAT */
199
#endif /* HAVE_MKDIRAT */
200
#ifdef HAVE_OPENAT
200
#ifdef HAVE_OPENAT
201
openat;int;(int dir_fd, const char *pathname, int flags, mode_t mode);(dir_fd, pathname, flags, mode);;(int dir_fd, const char *pathname, int flags, ...)
201
openat;int;(int dir_fd, const char *pathname, int flags);(dir_fd, pathname, flags)
202
#endif /* HAVE_OPENAT */
202
#endif /* HAVE_OPENAT */
203
#ifdef HAVE_RENAMEAT
203
#ifdef HAVE_RENAMEAT
204
renameat;int;(int olddir_fd, const char *oldpath, int newdir_fd, const char *newpath);(olddir_fd, oldpath, newdir_fd, newpath)
204
renameat;int;(int olddir_fd, const char *oldpath, int newdir_fd, const char *newpath);(olddir_fd, oldpath, newdir_fd, newpath)
205
- 

Return to bug 834445