fixup! Add display server.

This commit is contained in:
Jonas 'Sortie' Termansen 2023-06-08 01:24:05 +02:00
parent 894efe6956
commit be23ab5b0e
1 changed files with 3 additions and 1 deletions

View File

@ -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 * Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above
@ -115,6 +115,8 @@ CONNECTION_MESSAGE_HANDLER_NO_AUX(shutdown)
exit(1); exit(1);
else if ( msg->code == 2 ) else if ( msg->code == 2 )
exit(2); exit(2);
else if ( msg->code == 3 )
exit(3);
else else
exit(0); exit(0);
} }