diff --git a/changes/ticket20982 b/changes/ticket20982
deleted file mode 100644
index 5eaab4d9857a6776df40a6a500b213bc6f3a1218..0000000000000000000000000000000000000000
--- a/changes/ticket20982
+++ /dev/null
@@ -1,5 +0,0 @@
-  o Minor bugfixes (client):
-    - Conform to the GNU Coding Standards section 4.7.1 which states
-      that the output of the version option consists of the program name
-      and its version number without prefixes. Fixes bug 20982; bugfix
-      on 0.0.2pre24.
diff --git a/src/or/config.c b/src/or/config.c
index 60c00d42d8e4dc49fd239f1ed38e357fbf15bb17..7f789c49f3fd3bd8b49eb42dc26734780a7a67be 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -4945,12 +4945,12 @@ options_init_from_torrc(int argc, char **argv)
   }
 
   if (config_line_find(cmdline_only_options, "--version")) {
-    printf("Tor %s\n", get_version());
+    printf("Tor version %s.\n",get_version());
     exit(0);
   }
 
   if (config_line_find(cmdline_only_options, "--library-versions")) {
-    printf("Tor %s\n", get_version());
+    printf("Tor version %s. \n", get_version());
     printf("Library versions\tCompiled\t\tRuntime\n");
     printf("Libevent\t\t%-15s\t\t%s\n",
                       tor_libevent_get_header_version_str(),
diff --git a/src/tools/tor-resolve.c b/src/tools/tor-resolve.c
index fc41a837ff8ec617186447b784f0044a3a4751f5..29f85c4d17ee6de7381fa53440d1594b657e89c0 100644
--- a/src/tools/tor-resolve.c
+++ b/src/tools/tor-resolve.c
@@ -355,7 +355,7 @@ main(int argc, char **argv)
     usage();
 
   if (!strcmp(arg[0],"--version")) {
-    printf("Tor %s\n",VERSION);
+    printf("Tor version %s.\n",VERSION);
     return 0;
   }
   while (n_args && *arg[0] == '-') {