From e1dc65bdf0dbb09593897366054abfabcffc9987 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 5 Feb 2026 15:08:15 +0100 Subject: [PATCH] os: drop ifdef NO_PART_NET code path This symbol is never defined, so that code path isn't needed. Disabling "partial network" (thus, not arborting when not all requested interfaces can't be bound) can be done via command line. Signed-off-by: Enrico Weigelt, metux IT consult --- os/utils.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/os/utils.c b/os/utils.c index c8685cddca..7e6fe5cfa6 100644 --- a/os/utils.c +++ b/os/utils.c @@ -407,11 +407,7 @@ ProcessCommandLine(int argc, char *argv[]) defaultKeyboardControl.autoRepeat = TRUE; -#ifdef NO_PART_NET - PartialNetwork = FALSE; -#else PartialNetwork = TRUE; -#endif for (i = 0; defaultNoListenList[i] != NULL; i++) { if (_XSERVTransNoListen(defaultNoListenList[i]))