a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/apacheLog.c src/lib/apacheLog.c index 85a645c..728100f 100644 --- src/lib/apacheLog.c +++ src/lib/apacheLog.c @@ -1,23 +1,22 @@ /* apacheLog - stuff to parse out apache web server logs, currently * just the access log. */ #include "common.h" #include "obscure.h" #include "apacheLog.h" -static char const rcsid[] = "$Id: apacheLog.c,v 1.5 2009/09/10 01:50:01 kent Exp $"; void apacheAccessLogFree(struct apacheAccessLog **pLl) /* Free up apacheAccessLog. */ { struct apacheAccessLog *ll = *pLl; if (ll != NULL) { freeMem(ll->buf); freez(pLl); } } static void badFormat(struct apacheAccessLog **pLl, char *line, char *fileName, int lineIx, char *message)