From ca2207bcf18ed5b0dd1a0e370e9973d717ff87c9 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Wed, 03 Jan 2007 01:03:54 +0000 Subject: fix for request serial --- diff --git a/include/sitecing/sitecing_interface.h b/include/sitecing/sitecing_interface.h index f0210d6..a0e1b8a 100644 --- a/include/sitecing/sitecing_interface.h +++ b/include/sitecing/sitecing_interface.h @@ -26,7 +26,7 @@ namespace sitecing { /** * Serial number of request being processed. */ - long serial; + unsigned long serial; /** * The default constructor doesn't do much. @@ -36,7 +36,7 @@ namespace sitecing { * The constructor initializes the output stream pointer. * @param o the value to initialize the output stream pointer with. */ - sitecing_interface(ostream* o) : out(o) {} + sitecing_interface(ostream* o) : out(o), serial(0) {} }; } -- cgit v0.9.0.2