mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-10 22:39:28 +00:00
(construct_command_argv_internal) [__MSDOS__]: Fix typos.
This commit is contained in:
parent
8bc1a424e2
commit
595f7598ae
1 changed files with 2 additions and 2 deletions
4
job.c
4
job.c
|
@ -1497,7 +1497,7 @@ construct_command_argv_internal (line, restp, shell, ifs)
|
|||
strcat (dos_bname, ".bat");
|
||||
strcat (dos_bename, ".err");
|
||||
}
|
||||
batch = fopen(bename, "w"); /* Create a file. */
|
||||
batch = fopen (dos_bename, "w"); /* Create a file. */
|
||||
if (batch != NULL)
|
||||
fclose (batch);
|
||||
batch = fopen (dos_bname, "w");
|
||||
|
@ -1506,7 +1506,7 @@ construct_command_argv_internal (line, restp, shell, ifs)
|
|||
fprintf (batch, "\nif errorlevel 1 del %s\n", dos_bename);
|
||||
fclose (batch);
|
||||
new_argv = (char **) xmalloc(2 * sizeof(char *));
|
||||
new_argv[0] = strdup (bname);
|
||||
new_argv[0] = strdup (dos_bname);
|
||||
new_argv[1] = 0;
|
||||
}
|
||||
#else /* Not MSDOS. */
|
||||
|
|
Loading…
Reference in a new issue