stoddard 99/02/05 06:02:20
Modified: src CHANGES src/main http_core.c Log: Update CHANGES file. Change Win32InterpreterSource argument from "shebang" to "script". Revision Changes Path 1.1231 +4 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1230 retrieving revision 1.1231 diff -u -r1.1230 -r1.1231 --- CHANGES 1999/02/05 09:26:07 1.1230 +++ CHANGES 1999/02/05 14:02:17 1.1231 @@ -1,5 +1,9 @@ Changes with Apache 1.3.5 + *) Win32: Add new config directive, Win32InterpreterSource, to enable + searching the Win32 registry for script interpreters. + [Bill Stoddard] + *) Win32: The compiled-in default filename for the error log is now error.log, which matches the default in the distributed httpd.conf. [Paul Sutton] 1.247 +1 -1 apache-1.3/src/main/http_core.c Index: http_core.c =================================================================== RCS file: /export/home/cvs/apache-1.3/src/main/http_core.c,v retrieving revision 1.246 retrieving revision 1.247 diff -u -r1.246 -r1.247 --- http_core.c 1999/02/05 13:17:33 1.246 +++ http_core.c 1999/02/05 14:02:19 1.247 @@ -2635,7 +2635,7 @@ { if (!strcasecmp(arg, "registry")) { d->script_interpreter_source = INTERPRETER_SOURCE_REGISTRY; - } else if (!strcasecmp(arg, "shebang")) { + } else if (!strcasecmp(arg, "script")) { d->script_interpreter_source = INTERPRETER_SOURCE_SHEBANG; } else { d->script_interpreter_source = INTERPRETER_SOURCE_SHEBANG;