]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix trailing asterisk in the output of "GETINFO info/names"
authorRobert Ransom <rransom.8774@gmail.com>
Wed, 18 May 2011 11:13:21 +0000 (04:13 -0700)
committerRobert Ransom <rransom.8774@gmail.com>
Fri, 20 May 2011 15:25:42 +0000 (08:25 -0700)
changes/exit-policy-default-is-not-a-prefix [new file with mode: 0644]
src/or/control.c

diff --git a/changes/exit-policy-default-is-not-a-prefix b/changes/exit-policy-default-is-not-a-prefix
new file mode 100644 (file)
index 0000000..6eb1e8d
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor bugfixes:
+    - Remove a trailing asterisk from "exit-policy/default" in the
+      output of the control port command "GETINFO info/names".  Bugfix
+      on 0.1.2.5-alpha.
+
index 67e8b00d19c52ca1295acf2c6ef2e9213f6771c5..f7ff92ab346be571601f4b013c41e80b58814aad 100644 (file)
@@ -1907,8 +1907,8 @@ static const getinfo_item_t getinfo_items[] = {
          "v2 networkstatus docs as retrieved from a DirPort."),
   ITEM("dir/status-vote/current/consensus", dir,
        "v3 Networkstatus consensus as retrieved from a DirPort."),
-  PREFIX("exit-policy/default", policies,
-         "The default value appended to the configured exit policy."),
+  ITEM("exit-policy/default", policies,
+       "The default value appended to the configured exit policy."),
   PREFIX("ip-to-country/", geoip, "Perform a GEOIP lookup"),
   { NULL, NULL, NULL, 0 }
 };