From 9822e9703370980fa86906d7ffd63d62e7e2bc53 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Tue, 27 Feb 2018 22:56:12 +0100 Subject: nxagent: rearrange nx options in usage make them appear in the nx section. Also separate the nx section from the other options by an extra emtpy line. --- nx-X11/programs/Xserver/hw/nxagent/Args.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nx-X11/programs/Xserver/hw/nxagent/Args.c b/nx-X11/programs/Xserver/hw/nxagent/Args.c index c31acc26a..262c1dfdb 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Args.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Args.c @@ -2111,24 +2111,24 @@ Reply Total Cached Bits In Bits Out Bits/Reply Ratio void ddxUseMsg(void) { - ErrorF("-display string display name of the real server\n"); - ErrorF("-sync synchronize with the real server\n"); ErrorF("-full utilize full regeneration\n"); ErrorF("-class string default visual class\n"); ErrorF("-depth int default depth\n"); ErrorF("-geometry WxH+X+Y window size and position\n"); - ErrorF("-autodpi detect real server's DPI and use that in the session\n"); ErrorF("-bw int window border width\n"); ErrorF("-name string window name\n"); ErrorF("-scrns int number of screens to generate\n"); ErrorF("-install install colormaps directly\n"); - ErrorF("The NX system adds the following arguments:\n"); + ErrorF("\nThe NX system adds the following arguments:\n"); ErrorF("-options file|string file or string containing nx/nx options\n"); ErrorF("-forcenx force use of NX protocol messages assuming communication through nxproxy\n"); ErrorF("-timeout int auto-disconnect timeout in seconds (minimum allowed: 60)\n"); ErrorF("-norootlessexit don't exit if there are no clients in rootless mode\n"); ErrorF("-nomagicpixel disable nxagent's magic pixel\n"); + ErrorF("-autodpi detect real server's DPI and use that in the session\n"); + ErrorF("-display string display name of the real server\n"); + ErrorF("-sync synchronize with the real server\n"); #ifdef RENDER ErrorF("-norender disable the use of the render extension\n"); ErrorF("-nocomposite disable the use of the composite extension\n"); -- cgit v1.2.3 From 809206d0cf79f367d852f180f1a5733420010689 Mon Sep 17 00:00:00 2001 From: Ulrich Sibiller Date: Tue, 27 Feb 2018 23:00:08 +0100 Subject: os: hide ttyxx option is used nowhere anyway --- nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1 | 3 --- nx-X11/programs/Xserver/os/utils.c | 6 ++++++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1 b/nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1 index e860857b7..995576b5c 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1 +++ b/nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1 @@ -296,9 +296,6 @@ sets default connection timeout in seconds. .B \-tst disables all testing extensions. .TP 8 -.B tty\fIxx\fP -ignored, for servers started the ancient way (from init). -.TP 8 .B v sets video-off screen-saver preference. .TP 8 diff --git a/nx-X11/programs/Xserver/os/utils.c b/nx-X11/programs/Xserver/os/utils.c index 2edd8dd3f..0a1e3f7b2 100644 --- a/nx-X11/programs/Xserver/os/utils.c +++ b/nx-X11/programs/Xserver/os/utils.c @@ -269,7 +269,9 @@ long Memory_fail = 0; #include /* for random() */ #endif +#ifndef NXAGENT_SERVER char *dev_tty_from_init = NULL; /* since we need to parse it anyway */ +#endif extern char dispatchExceptionAtReset; @@ -628,7 +630,9 @@ void UseMsg(void) ErrorF("-terminate terminate at server reset\n"); ErrorF("-to # connection time out\n"); ErrorF("-tst disable testing extensions\n"); +#ifndef NXAGENT_SERVER ErrorF("ttyxx server started from init on /dev/ttyxx\n"); +#endif ErrorF("v video blanking for screen-saver\n"); ErrorF("-v screen-saver without video blanking\n"); ErrorF("-wm WhenMapped default backing-store\n"); @@ -1036,11 +1040,13 @@ ProcessCommandLine(int argc, char *argv[]) /* ignore all remaining arguments */ break; } +#ifndef NXAGENT_SERVER else if (strncmp (argv[i], "tty", 3) == 0) { /* just in case any body is interested */ dev_tty_from_init = argv[i]; } +#endif #ifdef XDMCP else if ((skip = XdmcpOptions(argc, argv, i)) != i) { -- cgit v1.2.3