diff options
author | Pierre Ossman <ossman@cendio.se> | 2016-01-12 10:14:49 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2016-01-12 10:14:49 +0100 |
commit | 526b3802b4a2503817c708abef763d0e94f18688 (patch) | |
tree | 61fdac488dc02695b801ee2d49c4689d5af7344e /win | |
parent | 018c67e6e1cdfb5e0494ad987093738b7fe7e60d (diff) | |
download | tigervnc-526b3802b4a2503817c708abef763d0e94f18688.tar.gz tigervnc-526b3802b4a2503817c708abef763d0e94f18688.zip |
Shorten service identifier
The identifier is used to compute the registry path, and should
ideally be kept short and without spaces.
Diffstat (limited to 'win')
-rw-r--r-- | win/winvnc/VNCServerService.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/winvnc/VNCServerService.cxx b/win/winvnc/VNCServerService.cxx index 14be6da0..0357677a 100644 --- a/win/winvnc/VNCServerService.cxx +++ b/win/winvnc/VNCServerService.cxx @@ -29,7 +29,7 @@ using namespace winvnc; using namespace rfb; using namespace win32; -const TCHAR* winvnc::VNCServerService::Name = _T("TigerVNC Server"); +const TCHAR* winvnc::VNCServerService::Name = _T("TigerVNC"); VNCServerService::VNCServerService() : Service(Name) |