aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-10-30 13:31:11 +0100
committerThomas White <taw@physics.org>2022-10-30 13:31:11 +0100
commit306562f867ca7f64d37228dc864c788621970953 (patch)
treedecc64c9c9d505fd969450a578a0fcfadec702e7
parent028356e4bfd6d2f9d8861178fcc2c70603043330 (diff)
Fixture display: Add a fence after requesting fixtures
-rw-r--r--src/starlet-fixture-display.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/starlet-fixture-display.c b/src/starlet-fixture-display.c
index 78cb8f4..498b704 100644
--- a/src/starlet-fixture-display.c
+++ b/src/starlet-fixture-display.c
@@ -691,7 +691,9 @@ static gboolean try_connect_cb(gpointer data)
fixd->repl = repl_connection_new(fixd->socket, process_line,
fixd, fixd->verbose);
if ( fixd->repl != NULL ) {
+ fixd->got_eof = FALSE;
repl_send(fixd->repl, "(list 'patched-fixtures (reverse (patched-fixture-names)))");
+ repl_send(fixd->repl, "'end-of-stuff");
}
}
return G_SOURCE_CONTINUE;