Ticket #49858: patch-wrapfunc.inp.diff

File patch-wrapfunc.inp.diff, 1.1 KB (added by florian@…, 8 years ago)

files/patch-wrapfunc.inp.diff

  • wrapfunc.inp

    old new setfsgid;gid_t;(gid_t fsgid);(fsgid) 
    145145#endif /* HAVE_SETFSGID */
    146146initgroups;int;(const char *user, INITGROUPS_SECOND_ARG group);(user, group)
    147147setgroups;int;(SETGROUPS_SIZE_TYPE size, const gid_t *list);(size, list)
    148 setpriority;int;(int which, int who, int prio);(which, who, prio)
     148setpriority;int;(int which, id_t who, int prio);(which, who, prio)
    149149#ifdef HAVE_CAPSET
    150150capset;int;(cap_user_header_t hdrp, const cap_user_data_t datap);(hdrp, datap)
    151151#endif /* HAVE_CAPSET */
     
    197197mkdirat;int;(int dir_fd, const char *pathname, mode_t mode);(dir_fd, pathname, mode)
    198198#endif /* HAVE_MKDIRAT */
    199199#ifdef HAVE_OPENAT
    200 openat;int;(int dir_fd, const char *pathname, int flags);(dir_fd, pathname, flags)
     200openat;int;(int dir_fd, const char *pathname, int flags, ...);
    201201#endif /* HAVE_OPENAT */
    202202#ifdef HAVE_RENAMEAT
    203203renameat;int;(int olddir_fd, const char *oldpath, int newdir_fd, const char *newpath);(olddir_fd, oldpath, newdir_fd, newpath)