Unverified Commit d7df0956 by Christian Brauner Committed by Stéphane Graber

bionic: s/lxc_raw_execveat()/execveat()/g

parent fc0a8697
......@@ -41,11 +41,9 @@ int fexecve(int fd, char *const argv[], char *const envp[])
return -1;
}
#ifdef __NR_execveat
lxc_raw_execveat(fd, "", argv, envp, AT_EMPTY_PATH);
execveat(fd, "", argv, envp, AT_EMPTY_PATH);
if (errno != ENOSYS)
return -1;
#endif
ret = snprintf(procfd, sizeof(procfd), "/proc/self/fd/%d", fd);
if (ret < 0 || (size_t)ret >= sizeof(procfd)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment