mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
whoops
just because it says snprintf doesn't mean it's a noop svn:r3071
This commit is contained in:
parent
fc87758ff3
commit
675f60aa13
1 changed files with 3 additions and 2 deletions
|
@ -1052,8 +1052,9 @@ router_parse_addr_policy(directory_token_t *tok) {
|
|||
newe = tor_malloc_zero(sizeof(addr_policy_t));
|
||||
|
||||
newe->string = tor_malloc(8+strlen(arg));
|
||||
// tor_snprintf(newe->string, 8+strlen(arg), "%s %s",
|
||||
// (tok->tp == K_REJECT) ? "reject" : "accept", arg);
|
||||
/* XXX eventually, use the code from router.c:727 to generate this */
|
||||
tor_snprintf(newe->string, 8+strlen(arg), "%s %s",
|
||||
(tok->tp == K_REJECT) ? "reject" : "accept", arg);
|
||||
newe->policy_type = (tok->tp == K_REJECT) ? ADDR_POLICY_REJECT
|
||||
: ADDR_POLICY_ACCEPT;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue