From be23ab5b0edb5bf23a7167b0109ee555dd6d2be4 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Thu, 8 Jun 2023 01:24:05 +0200 Subject: [PATCH] fixup! Add display server. --- display/connection.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/display/connection.c b/display/connection.c index 723b00ef..d8519613 100644 --- a/display/connection.c +++ b/display/connection.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, 2016 Jonas 'Sortie' Termansen. + * Copyright (c) 2014, 2015, 2016, 2023 Jonas 'Sortie' Termansen. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -115,6 +115,8 @@ CONNECTION_MESSAGE_HANDLER_NO_AUX(shutdown) exit(1); else if ( msg->code == 2 ) exit(2); + else if ( msg->code == 3 ) + exit(3); else exit(0); }