X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=cgisimple.c;h=5ced54c938d568acc7b9d13af29fac75231f3949;hb=3ff0efdf338fc875d387c9b8dca58c03036b719c;hp=6b329c6ca5c03213e0f6a8e879c66caa0554c5a1;hpb=e10fec52a4eeda120e0f145a540d54a3a240c17f;p=privoxy.git diff --git a/cgisimple.c b/cgisimple.c index 6b329c6c..5ced54c9 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -1,4 +1,4 @@ -const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.63 2008/02/01 06:04:31 fabiankeil Exp $"; +const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.65 2008/02/23 16:33:43 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgisimple.c,v $ @@ -36,6 +36,13 @@ const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.63 2008/02/01 06:04:31 fabian * * Revisions : * $Log: cgisimple.c,v $ + * Revision 1.65 2008/02/23 16:33:43 fabiankeil + * Let forward_url() use the standard parameter ordering + * and mark its second parameter immutable. + * + * Revision 1.64 2008/02/03 13:56:07 fabiankeil + * Add SOCKS5 support for show-url-info CGI page. + * * Revision 1.63 2008/02/01 06:04:31 fabiankeil * If edit buttons on the show-url-info CGI page are hidden, explain why. * @@ -1633,7 +1640,7 @@ jb_err cgi_show_url_info(struct client_state *csp, * but luckily it's no longer required later on anyway. */ free_current_action(csp->action); - url_actions(url_to_query, csp); + get_url_actions(csp, url_to_query); /* * Fill in forwarding settings. @@ -1649,7 +1656,7 @@ jb_err cgi_show_url_info(struct client_state *csp, * display the proxy port and an eventual second forwarder. */ { - const struct forward_spec * fwd = forward_url(url_to_query, csp); + const struct forward_spec *fwd = forward_url(csp, url_to_query); if ((fwd->gateway_host == NULL) && (fwd->forward_host == NULL)) {