aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/nxagent/Client.c
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2018-01-05 00:50:29 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-02-05 12:47:46 +0100
commit876063ce1f0d951f08232f0fce80b558e044ab5b (patch)
treedeead6d2808259c0c24d6ba4ebc16cc7ebed4e8a /nx-X11/programs/Xserver/hw/nxagent/Client.c
parent9e22a10a5a59e8d45f0ca66bf3585d0aee88a9e7 (diff)
downloadnx-libs-876063ce1f0d951f08232f0fce80b558e044ab5b.tar.gz
nx-libs-876063ce1f0d951f08232f0fce80b558e044ab5b.tar.bz2
nx-libs-876063ce1f0d951f08232f0fce80b558e044ab5b.zip
Client.c: Fix wrong function names in DEBUG/WARNING output
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Client.c')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Client.c b/nx-X11/programs/Xserver/hw/nxagent/Client.c
index 38d877ed7..1149545eb 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Client.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Client.c
@@ -517,12 +517,12 @@ void nxagentCheckRestartedClients(struct timeval **timeout)
if (FD_ISSET(fd, &ClientsWithInput))
{
#ifdef WARNING
- fprintf(stderr, "nxagentBlockHandler: WARNING! Client [%d] with fd [%d] has input.\n",
+ fprintf(stderr, "nxagentCheckRestartedClients: WARNING! Client [%d] with fd [%d] has input.\n",
clients[i] -> index, fd);
#endif
#ifdef DEBUG
- fprintf(stderr, "nxagentBlockHandler: Setting a null timeout with former timeout [%ld] Ms.\n",
+ fprintf(stderr, "nxagentCheckRestartedClients: Setting a null timeout with former timeout [%ld] Ms.\n",
(*timeout) -> tv_sec * 1000 + (*timeout) -> tv_usec / 1000);
#endif