lowercase exit policies.

svn:r556
This commit is contained in:
Nick Mathewson 2003-10-07 23:02:37 +00:00
parent 9e30ac2870
commit 3b2943d845

View File

@ -952,11 +952,13 @@ int router_add_exit_policy_from_string(routerinfo_t *router,
directory_token_t tok;
char *tmp, *cp;
int r;
int len;
int len, idx;
len = strlen(s);
tmp = cp = tor_malloc(len+2);
strcpy(tmp, s);
for (idx = 0; idx < len; ++idx) {
tmp[idx] = tolower(s[idx]);
}
tmp[len]='\n';
tmp[len+1]='\0';
if (router_get_next_token(&cp, &tok)) {