aboutsummaryrefslogtreecommitdiffstats
path: root/unix/xserver
diff options
context:
space:
mode:
Diffstat (limited to 'unix/xserver')
-rw-r--r--unix/xserver/hw/vnc/vncExtInit.cc6
-rw-r--r--unix/xserver/hw/vnc/vncHooks.c4
-rw-r--r--unix/xserver/hw/vnc/xvnc.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/unix/xserver/hw/vnc/vncExtInit.cc b/unix/xserver/hw/vnc/vncExtInit.cc
index 9b8cfe5b..367481ac 100644
--- a/unix/xserver/hw/vnc/vncExtInit.cc
+++ b/unix/xserver/hw/vnc/vncExtInit.cc
@@ -89,7 +89,7 @@ rfb::BoolParameter localhostOnly("localhost",
"Only allow connections from localhost",
false);
rfb::StringParameter interface("interface",
- "listen on the specified network address",
+ "Listen on the specified network address",
"all");
rfb::BoolParameter avoidShiftNumLock("AvoidShiftNumLock",
"Avoid fake Shift presses for keys affected by NumLock.",
@@ -173,13 +173,13 @@ static void parseOverrideList(const char *text, ParamSet &out)
void vncExtensionInit(void)
{
if (vncExtGeneration == vncGetServerGeneration()) {
- vlog.error("vncExtensionInit: called twice in same generation?");
+ vlog.error("vncExtensionInit: Called twice in same generation?");
return;
}
vncExtGeneration = vncGetServerGeneration();
if (vncGetScreenCount() > MAXSCREENS)
- vncFatalError("vncExtensionInit: too many screens\n");
+ vncFatalError("vncExtensionInit: Too many screens\n");
vncAddExtension();
diff --git a/unix/xserver/hw/vnc/vncHooks.c b/unix/xserver/hw/vnc/vncHooks.c
index 7fe35ada..bb15591f 100644
--- a/unix/xserver/hw/vnc/vncHooks.c
+++ b/unix/xserver/hw/vnc/vncHooks.c
@@ -436,7 +436,7 @@ static Bool vncHooksCloseScreen(ScreenPtr pScreen_)
unwrap(vncHooksScreen, rp, rrCrtcSet);
}
- DBGPRINT((stderr,"vncHooksCloseScreen: unwrapped screen functions\n"));
+ DBGPRINT((stderr,"vncHooksCloseScreen: Unwrapped screen functions\n"));
return (*pScreen->CloseScreen)(pScreen);
}
@@ -1214,7 +1214,7 @@ static void vncHooksValidateGC(GCPtr pGC, unsigned long changes,
(*pGC->funcs->ValidateGC) (pGC, changes, pDrawable);
if (is_visible(pDrawable)) {
pGCPriv->ops = pGC->ops;
- DBGPRINT((stderr,"vncHooksValidateGC: wrapped GC ops\n"));
+ DBGPRINT((stderr,"vncHooksValidateGC: Wrapped GC ops\n"));
} else {
pGCPriv->ops = NULL;
}
diff --git a/unix/xserver/hw/vnc/xvnc.c b/unix/xserver/hw/vnc/xvnc.c
index 0165d598..31301f6c 100644
--- a/unix/xserver/hw/vnc/xvnc.c
+++ b/unix/xserver/hw/vnc/xvnc.c
@@ -374,7 +374,7 @@ ddxProcessArgument(int argc, char *argv[], int i)
if ((vncInetdSock = dup(0)) == -1)
FatalError
- ("Xvnc error: failed to allocate a new file descriptor for -inetd: %s\n", strerror(errno));
+ ("Xvnc error: Failed to allocate a new file descriptor for -inetd: %s\n", strerror(errno));
/* Avoid xserver >= 1.19's epoll-fd becoming fd 2 / stderr only to be
@@ -396,7 +396,7 @@ ddxProcessArgument(int argc, char *argv[], int i)
if (displayNum == 100)
FatalError
- ("Xvnc error: no free display number for -inetd\n");
+ ("Xvnc error: No free display number for -inetd\n");
}
display = displayNumStr;