Fix for mangled comment

I noticed that a comment after an #endif in HTAccess.C was not formatted
properly.  While this is OK with most compilers, there are probably still
a few out there that don't ignore all trailing text on such compiler
directives.  Here's a patch:

Index: HTAccess.c
@@ -76,7 +76,7 @@
 	HTTRACE(PROT_TRACE, "HTAccess.... Accessing document %s\n" _ full_address);
 	HT_FREE(full_address);
     }
-#endif / * HTDEBUG */
+#endif /* HTDEBUG */
     return HTLoad(request, recursive);
 }
 
..wayne..

Received on Wednesday, 23 August 2000 19:57:22 UTC