summaryrefslogtreecommitdiffstats
path: root/ksmserver
diff options
context:
space:
mode:
Diffstat (limited to 'ksmserver')
-rw-r--r--ksmserver/legacy.cpp2
-rw-r--r--ksmserver/server.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/ksmserver/legacy.cpp b/ksmserver/legacy.cpp
index 1a1cea765..186fdcf64 100644
--- a/ksmserver/legacy.cpp
+++ b/ksmserver/legacy.cpp
@@ -356,7 +356,7 @@ TQString KSMServer::windowWmClientMachine(WId w)
hostnamebuf[sizeof(hostnamebuf)-1] = 0;
if (result == hostnamebuf)
result = "localhost";
- if(char *dot = (char*)strchr(hostnamebuf, '.')) {
+ if(char *dot = strchr(hostnamebuf, '.')) {
*dot = '\0';
if(result == hostnamebuf)
result = "localhost";
diff --git a/ksmserver/server.cpp b/ksmserver/server.cpp
index ecb3cdcde..f4068a8f3 100644
--- a/ksmserver/server.cpp
+++ b/ksmserver/server.cpp
@@ -366,12 +366,12 @@ Status SetAuthentication_local (int count, IceListenObj *listenObjs)
for (i = 0; i < count; i ++) {
char *prot = IceGetListenConnectionString(listenObjs[i]);
if (!prot) continue;
- char *host = (char*)strchr(prot, '/');
+ char *host = strchr(prot, '/');
char *sock = 0;
if (host) {
*host=0;
host++;
- sock = (char*)strchr(host, ':');
+ sock = strchr(host, ':');
if (sock) {
*sock = 0;
sock++;