Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
809206d0
Commit
809206d0
authored
Feb 27, 2018
by
Ulrich Sibiller
Committed by
Mihai Moldovan
Feb 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
os: hide ttyxx option
is used nowhere anyway
parent
9822e970
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
nxagent.1
nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1
+0
-3
utils.c
nx-X11/programs/Xserver/os/utils.c
+6
-0
No files found.
nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1
View file @
809206d0
...
...
@@ -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
...
...
nx-X11/programs/Xserver/os/utils.c
View file @
809206d0
...
...
@@ -269,7 +269,9 @@ long Memory_fail = 0;
#include <stdlib.h>
/* 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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment