From e78bd50ef1d692ee56329804abd5c511bc5508f5 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sun, 6 May 2018 10:23:41 -0400 Subject: [PATCH] fix --- contrib/backends/nntpchan-daemon/libnntpchan/exec_frontend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/backends/nntpchan-daemon/libnntpchan/exec_frontend.cpp b/contrib/backends/nntpchan-daemon/libnntpchan/exec_frontend.cpp index ec54b78..e763dea 100644 --- a/contrib/backends/nntpchan-daemon/libnntpchan/exec_frontend.cpp +++ b/contrib/backends/nntpchan-daemon/libnntpchan/exec_frontend.cpp @@ -37,7 +37,7 @@ int ExecFrontend::Exec(std::deque args) } else { - int r = execvpe(m_exec.c_str(), (char *const *)cargs, m_Environ); + int r = execve(m_exec.c_str(), (char *const *)cargs, m_Environ); if (r == -1) { std::cout << strerror(errno) << std::endl;