From 3d27f015c1e2e87f69e95b9684b6738d647b5a34 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 12 May 2013 12:11:18 -0700 Subject: [PATCH] Fix to avoid remote console looping in Multi-Command mode (Fix to issue #50). --- sim_console.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sim_console.c b/sim_console.c index df573adc..e18bacf1 100644 --- a/sim_console.c +++ b/sim_console.c @@ -659,6 +659,7 @@ for (i=(was_stepping ? sim_rem_step_line : 0); printf ("Remote Console Command from %s> %s\r\n", lp->ipad, sim_rem_buf[i]); if (sim_log) fprintf (sim_log, "Remote Console Command from %s> %s\n", lp->ipad, sim_rem_buf[i]); + got_command = FALSE; if (strlen(sim_rem_buf[i]) >= sizeof(cbuf)) { printf ("\nLine too long. Ignored. Continuing Simulator execution\n"); if (sim_log)