aboutsummaryrefslogtreecommitdiffstats
path: root/rfb/HTTPServer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'rfb/HTTPServer.cxx')
-rw-r--r--rfb/HTTPServer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfb/HTTPServer.cxx b/rfb/HTTPServer.cxx
index 55e6909e..3bac4f89 100644
--- a/rfb/HTTPServer.cxx
+++ b/rfb/HTTPServer.cxx
@@ -148,7 +148,7 @@ HTTPServer::Session::writeResponse(int result, const char* text) {
sprintf(buffer, "%s %d %s", "HTTP/1.1", result, text);
OutStream& os=sock.outStream();
writeLine(os, buffer);
- writeLine(os, "Server: RealVNC/4.0");
+ writeLine(os, "Server: TightVNC/4.0");
writeLine(os, "Connection: close");
os.writeBytes("Content-Type: ", 14);
if (result == 200) {