mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge remote-tracking branch 'public/bug7059'
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
o Minor features (controller):
|
||||
- Allow an optional $ before the node identity digest in the
|
||||
controller command GETINFO ns/id/<identity>, for consistency with
|
||||
md/id/<identity> and desc/id/<identity>.
|
||||
|
||||
@@ -2374,8 +2374,11 @@ getinfo_helper_networkstatus(control_connection_t *conn,
|
||||
return 0;
|
||||
} else if (!strcmpstart(question, "ns/id/")) {
|
||||
char d[DIGEST_LEN];
|
||||
const char *q = question + 6;
|
||||
if (*q == '$')
|
||||
++q;
|
||||
|
||||
if (base16_decode(d, DIGEST_LEN, question+6, strlen(question+6))) {
|
||||
if (base16_decode(d, DIGEST_LEN, q, strlen(q))) {
|
||||
*errmsg = "Data not decodeable as hex";
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user