diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-05-18 04:13:21 -0700 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-05-20 08:25:42 -0700 |
commit | 90f810801e92e8ee5d0b1341172f83e844af56c8 (patch) | |
tree | 322c3fd26b4d3e3b1fd481c89978dbe68786cf31 /src | |
parent | b3133d1cadec0540105a855b1fd2eb741d4eec9d (diff) | |
download | tor-90f810801e92e8ee5d0b1341172f83e844af56c8.tar tor-90f810801e92e8ee5d0b1341172f83e844af56c8.tar.gz |
Fix trailing asterisk in the output of "GETINFO info/names"
Diffstat (limited to 'src')
-rw-r--r-- | src/or/control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/control.c b/src/or/control.c index 67e8b00d1..f7ff92ab3 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -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 } }; |