Browse Source

don't list version in the win32 service display name or service name,
since they'll keep changing and people will get messed up about which
one is installed.


svn:r3592

Roger Dingledine 20 years ago
parent
commit
c5c46d6fb6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/or/main.c

+ 2 - 2
src/or/main.c

@@ -86,8 +86,8 @@ int has_completed_circuit=0;
 /* #define MS_WINDOWS_SERVICE */
 #ifdef MS_WINDOWS_SERVICE
 #include <tchar.h>
-#define GENSRV_SERVICENAME  TEXT("tor-"VERSION)
-#define GENSRV_DISPLAYNAME  TEXT("Tor "VERSION" Win32 Service")
+#define GENSRV_SERVICENAME  TEXT("tor")
+#define GENSRV_DISPLAYNAME  TEXT("Tor Win32 Service")
 #define GENSRV_DESCRIPTION  TEXT("Provides an anonymous Internet communication system")
 SERVICE_STATUS service_status;
 SERVICE_STATUS_HANDLE hStatus;