unsetenv ("MSGEXEC_PREV_MSGID_PLURAL");
/* Open a pipe to a subprocess. */
- child = create_pipe_out (sub_name, sub_path, sub_argv, NULL,
+ child = create_pipe_out (sub_name, sub_path, sub_argv, NULL, NULL,
NULL, false, true, true, fd);
/* Ignore SIGPIPE here. We don't care if the subprocesses terminates
argv[0] = BOURNE_SHELL;
argv[1] = prog;
argv[2] = NULL;
- child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL,
+ child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL, NULL,
DEV_NULL, false, true, false, fd);
if (child == -1)
goto failed;
argv[1] = prog;
argv[2] = "yes";
argv[3] = NULL;
- child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL,
+ child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL, NULL,
DEV_NULL, false, true, false, fd);
if (child == -1)
goto failed;
give you feedback about the translations, and so that maintainers can contact\n\
you in case of unexpected technical problems.\n");
argv[3] = NULL;
- child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL,
+ child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL, NULL,
DEV_NULL, false, true, false, fd);
if (child == -1)
goto failed;
argv[4] = catalogname;
argv[5] = language;
argv[6] = NULL;
- child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL,
+ child = create_pipe_in (prog, BOURNE_SHELL, argv, NULL, NULL,
DEV_NULL, false, true, false, fd);
if (child == -1)
goto failed;
argv[1] = language;
argv[2] = last_dir;
argv[3] = NULL;
- child = create_pipe_in (prog, prog, argv, NULL,
+ child = create_pipe_in (prog, prog, argv, NULL, NULL,
DEV_NULL, false, true, false, fd);
free (last_dir);
if (child == -1)
int exitstatus;
/* Open a pipe to the C# execution engine. */
- child = create_pipe_in (progname, prog_path, prog_argv, NULL,
+ child = create_pipe_in (progname, prog_path, prog_argv, NULL, NULL,
DEV_NULL, false, true, true, fd);
fp = fdopen (fd[0], "r");
int exitstatus;
/* Open a pipe to the JVM. */
- child = create_pipe_in (progname, prog_path, prog_argv, NULL,
+ child = create_pipe_in (progname, prog_path, prog_argv, NULL, NULL,
DEV_NULL, false, true, true, fd);
fp = fdopen (fd[0], "r");
int exitstatus;
/* Open a pipe to the C# execution engine. */
- child = create_pipe_in (progname, prog_path, prog_argv, NULL,
+ child = create_pipe_in (progname, prog_path, prog_argv, NULL, NULL,
NULL, false, true, true, fd);
fp = fdopen (fd[0], "r");
}
/* Open a pipe to the Tcl interpreter. */
- child = create_pipe_in ("tclsh", "tclsh", argv, NULL,
+ child = create_pipe_in ("tclsh", "tclsh", argv, NULL, NULL,
DEV_NULL, false, true, true, fd);
fp = fdopen (fd[0], "r");
(void) private_data;
java_exitcode =
- execute (progname, prog_path, prog_argv, NULL,
+ execute (progname, prog_path, prog_argv, NULL, NULL,
true, true, false, false, true, false, NULL);
/* Exit code 0 means success, 2 means timed out. */
return !(java_exitcode == 0 || java_exitcode == 2);
argv[0] = "wget";
argv[1] = "--version";
argv[2] = NULL;
- exitstatus = execute ("wget", "wget", argv, NULL,
+ exitstatus = execute ("wget", "wget", argv, NULL, NULL,
false, false, true, true, true, false, NULL);
wget_present = (exitstatus == 0);
wget_tested = true;
argv[6] = "--user-agent"; argv[7] = "urlget";
argv[8] = url;
argv[9] = NULL;
- exitstatus = execute ("wget", "wget", argv, NULL,
+ exitstatus = execute ("wget", "wget", argv, NULL, NULL,
true, false, false, false, true, false, NULL);
if (exitstatus != 127)
{
argv[0] = "lynx";
argv[1] = "--version";
argv[2] = NULL;
- exitstatus = execute ("lynx", "lynx", argv, NULL,
+ exitstatus = execute ("lynx", "lynx", argv, NULL, NULL,
false, false, true, true, true, false, NULL);
lynx_present = (exitstatus == 0);
lynx_tested = true;
argv[2] = "-source";
argv[3] = url;
argv[4] = NULL;
- exitstatus = execute ("lynx", "lynx", argv, NULL,
+ exitstatus = execute ("lynx", "lynx", argv, NULL, NULL,
true, false, false, false, true, false, NULL);
if (exitstatus != 127)
{
argv[0] = "curl";
argv[1] = "--version";
argv[2] = NULL;
- exitstatus = execute ("curl", "curl", argv, NULL,
+ exitstatus = execute ("curl", "curl", argv, NULL, NULL,
false, false, true, true, true, false, NULL);
curl_present = (exitstatus == 0 || exitstatus == 2);
curl_tested = true;
argv[2] = "--user-agent"; argv[3] = "urlget";
argv[4] = url;
argv[5] = NULL;
- exitstatus = execute ("curl", "curl", argv, NULL,
+ exitstatus = execute ("curl", "curl", argv, NULL, NULL,
true, false, false, false, true, false, NULL);
if (exitstatus != 127)
{
int exitstatus;
/* Open a pipe to the C# execution engine. */
- child = create_pipe_out (progname, prog_path, prog_argv, NULL,
+ child = create_pipe_out (progname, prog_path, prog_argv, NULL, NULL,
NULL, false, true, true, fd);
fp = fdopen (fd[0], "wb");
free (command);
}
- child = create_pipe_in (progname, progname, argv, found_in_dir,
+ child = create_pipe_in (progname, progname, argv, NULL, found_in_dir,
DEV_NULL, false, true, true, fd);
fp = fdopen (fd[0], "r");