diff -ruBNx HTML /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081027/CHANGES /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081227/CHANGES
--- /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081027/CHANGES 2008-10-25 11:30:36.000000000 -0400
+++ /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081227/CHANGES 2008-12-27 12:10:32.000000000 -0500
@@ -1,4 +1,7 @@
+* current
+ work around bug in some versions of mod_perl
+
* Version 3.6 [2008 Oct 27]
SNMP interface auto-discovery (oid: ifInOctets[POS1/0])
better handling of solaris low descriptor limit
diff -ruBNx HTML /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081027/Makefile.tplt /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081227/Makefile.tplt
--- /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081027/Makefile.tplt 2008-10-27 15:07:51.000000000 -0400
+++ /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081227/Makefile.tplt 2008-12-27 12:10:15.000000000 -0500
@@ -3,9 +3,9 @@
# Created: 2002-Jun-27
# Function: Makefile template
#
-# $Id: Makefile.tplt,v 1.181 2008/10/25 15:31:46 jaw Exp $
+# $Id: Makefile.tplt,v 1.182 2008/12/27 17:10:15 jaw Exp $
-VERSION = dev-20081027
+VERSION = dev-20081227
MESSAGE = This is unstable development code
INSTALL = please see the INSTALL document for the next steps
UPGRADE1 = be sure to install the new misc/argus.css and misc/argus.js files
diff -ruBNx HTML /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081027/src/web_graph.pl /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081227/src/web_graph.pl
--- /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081027/src/web_graph.pl 2008-10-25 11:31:47.000000000 -0400
+++ /home/hostedsites/www.jeremykister.com/data/argus/argus-dev-20081227/src/web_graph.pl 2008-12-07 11:44:33.000000000 -0500
@@ -5,7 +5,7 @@
# Created: 2005-Dec-10 12:51 (EST)
# Function: cgi graph functions
#
-# $Id: web_graph.pl,v 1.9 2008/10/25 15:31:47 jaw Exp $
+# $Id: web_graph.pl,v 1.10 2008/12/07 16:44:33 jaw Exp $
package Argus::Web;
use Socket;
@@ -87,6 +87,7 @@
}else{
# child
# shuffle filedescriptors around
+ eval { untie(*STDIN); untie(*STDOUT); }; # bug in some vesions of mod_perl
close STDIN; open( STDIN, "<&PICR" );
close STDOUT; open( STDOUT, ">&PNGW" );
close PICR; close PNGR;