Commit 3b2943d8 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

lowercase exit policies.


svn:r556
parent 9e30ac28
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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)) {