On Sun, 21 Nov 2004 [EMAIL PROTECTED] wrote: > Author: pquerna > Date: Sat Nov 20 21:53:38 2004 > New Revision: 106072 > > Modified: > httpd/httpd/trunk/modules/http/http_request.c > Log: > Compile Fix for Netware Port with CodeWarrior.
FYI, this would not be just a CodeWarrior thing... declaring variables in the middle of a function is not valid ANSI C. It's valid in C++, and unfortunately some broken C compilers allow C++ constructs to be used without complaint (cough MSVC). --Cliff
