oops… pasto… restored the wrong backup code…

(I had one that didn’t revert cid 100514E4F1D5C90862C in check.t first…)
This commit is contained in:
tg 2013-04-26 19:47:07 +00:00
parent 5f5393b4f1
commit b6f4617dee
1 changed files with 7 additions and 6 deletions

13
exec.c
View File

@ -23,7 +23,7 @@
#include "sh.h"
__RCSID("$MirOS: src/bin/mksh/exec.c,v 1.118 2013/04/26 19:40:44 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/exec.c,v 1.119 2013/04/26 19:47:07 tg Exp $");
#ifndef MKSH_DEFAULT_EXECSHELL
#define MKSH_DEFAULT_EXECSHELL "/bin/sh"
@ -661,12 +661,13 @@ comexec(struct op *t, struct tbl * volatile tp, const char **ap,
}
if (Flag(FXTRACE)) {
rv = 0;
if (ap[rv = 0]) {
xtrace_ap_loop:
print_value_quoted(shl_out, ap[rv]);
if (ap[++rv]) {
shf_putc(' ', shl_out);
goto xtrace_ap_loop;
print_value_quoted(shl_out, ap[rv]);
if (ap[++rv]) {
shf_putc(' ', shl_out);
goto xtrace_ap_loop;
}
}
shf_putc('\n', shl_out);
Flag(FXTRACE) = 1;