aboutsummaryrefslogtreecommitdiff
path: root/src/server/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/server.c')
-rw-r--r--src/server/server.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/server.c b/src/server/server.c
index 1499e738..8da82ec8 100644
--- a/src/server/server.c
+++ b/src/server/server.c
@@ -465,9 +465,10 @@ int server_loop(struct command_context *command_context)
retval = service->input(c);
if (retval != ERROR_OK) {
struct connection *next = c->next;
- if (service->type == CONNECTION_PIPE) {
+ if (service->type == CONNECTION_PIPE ||
+ service->type == CONNECTION_STDINOUT) {
/* if connection uses a pipe then
- *shutdown openocd on error */
+ * shutdown openocd on error */
shutdown_openocd = 1;
}
remove_connection(service, c);