Re: [Nagios-devel] Bugfix in reset_variables (base/utils.c)

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
Guest

Re: [Nagios-devel] Bugfix in reset_variables (base/utils.c)

Post by Guest »

--=-=-=

Hi,

we are using Nagios bu through an apache with mod_proxy_html(1) in order
to rewrite URLs in link/forms.
mod_proxy_html parse the html as X tree and Nagios generated html is not
valid.

when cmd.c send:
...

it gets rewritten by mod_proxy_html:
outside of the


--
GnuPG ID 1024D/112189D8

--=-=-=
Content-Disposition: inline; filename=cmd.c.diff

--- cmd.c 2003-05-30 21:25:55.000000000 +0200
+++ cmd.c.new 2005-01-28 14:57:11.000000000 +0100
@@ -776,9 +776,10 @@

printf("\n");
printf("\n");
+ printf("\n", COMMAND_CGI);
printf("\n");

- printf("\n",COMMAND_CGI,cmd,CMDMODE_COMMIT);
+ printf("\n",cmd,CMDMODE_COMMIT);

switch(cmd){

@@ -1085,10 +1086,10 @@


printf("\n");
- printf(" \n");
+ printf(" \n");

printf("\n");
-
+ printf("\n");
printf("\n");
printf("\n");
printf("\n");

--=-=-=--





This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]
Locked