aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2020-05-06 01:50:16 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2020-05-07 14:58:17 +0200
commit64c95c0a006e7d32cfd200a93aa5a9697c14649d (patch)
tree0e8039f017072a4e3bfa7c2598d4a1aad3a56494
parentcf2bd1cf3859641d7394a1bfcf951af7c2f9ef04 (diff)
downloadnx-libs-64c95c0a006e7d32cfd200a93aa5a9697c14649d.tar.gz
nx-libs-64c95c0a006e7d32cfd200a93aa5a9697c14649d.tar.bz2
nx-libs-64c95c0a006e7d32cfd200a93aa5a9697c14649d.zip
Reconnect.c: reformat comments
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Reconnect.c34
1 files changed, 14 insertions, 20 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Reconnect.c b/nx-X11/programs/Xserver/hw/nxagent/Reconnect.c
index 93e9ab432..17b46ad10 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Reconnect.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Reconnect.c
@@ -236,8 +236,7 @@ int nxagentHandleConnectionStates(void)
fprintf(stderr, "nxagentHandleConnectionStates: Got I/O error in the exception flags.\n");
#endif
/*
-TODO: This should be reset only when
- the state became SESSION_DOWN.
+TODO: This should be reset only when the state became SESSION_DOWN.
*/
nxagentException.ioError = 0;
@@ -364,8 +363,7 @@ void nxagentDisconnectSession(void)
nxagentFreeTimeoutTimer();
/*
- * Force an I/O error on the display
- * and wait until the NX transport
+ * Force an I/O error on the display and wait until the NX transport
* is gone.
*/
@@ -426,16 +424,15 @@ Bool nxagentReconnectSession(void)
nxagentChangeOption(DeviceControl, nxagentOption(DeviceControlUserDefined));
/*
- * We need to zero out every new XID
- * created by the disconnected display.
+ * We need to zero out every new XID created by the disconnected
+ * display.
*/
nxagentDisconnectSession();
/*
- * Set this in order to let the screen
- * function to behave differently at
- * reconnection time.
+ * Set this in order to let the screen function to behave
+ * differently at reconnection time.
*/
nxagentReconnectTrap = True;
@@ -503,16 +500,15 @@ Bool nxagentReconnectSession(void)
}
/*
- * Map the main window and send a
- * SetSelectionOwner request to
+ * Map the main window and send a SetSelectionOwner request to
* notify of the agent start.
*/
nxagentMapDefaultWindows();
/*
- * Ensure that the SetSelectionOwner
- * request is sent through the link.
+ * Ensure that the SetSelectionOwner request is sent through the
+ * link.
*/
XFlush(nxagentDisplay);
@@ -682,10 +678,9 @@ Bool nxagentReconnectSession(void)
nxagentRemoveSplashWindow();
/*
- * We let the proxy flush the link on our behalf
- * after having opened the display. We are now
- * entering again the dispatcher so can flush
- * the link explicitly.
+ * We let the proxy flush the link on our behalf after having opened
+ * the display. We are now entering again the dispatcher so can
+ * flush the link explicitly.
*/
#ifdef TEST
@@ -798,9 +793,8 @@ void nxagentSetReconnectError(int id, char *format, ...)
else
{
/*
- * The vsnprintf() in glibc 2.0.6 would return
- * -1 when the output was truncated. See section
- * NOTES on printf(3).
+ * The vsnprintf() in glibc 2.0.6 would return -1 when the
+ * output was truncated. See section NOTES on printf(3).
*/
size = (size ? size * 2 : NXAGENT_RECONNECT_DEFAULT_MESSAGE_SIZE);