make options->RedirectExit work again; resolve bug 293.

svn:r6492
This commit is contained in:
Roger Dingledine 2006-05-24 11:13:03 +00:00
parent 8c49a46eee
commit 6066d68ac3

View File

@ -726,10 +726,11 @@ options_act(or_options_t *old_options)
smartlist_t *sl = smartlist_create();
char *errmsg = NULL;
for (cl = options->RedirectExit; cl; cl = cl->next) {
if (parse_redirect_line(sl, cl, &errmsg)<0)
if (parse_redirect_line(sl, cl, &errmsg)<0) {
log_warn(LD_CONFIG, "%s", errmsg);
tor_free(errmsg);
return -1;
}
}
set_exit_redirects(sl);
}