e70152e44cc66cc599ff6b699eb8adc07f3e656a kent Sat May 24 21:09:34 2014 -0700 Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment. diff --git src/lib/apacheLog.c src/lib/apacheLog.c index 728100f..d0f2186 100644 --- src/lib/apacheLog.c +++ src/lib/apacheLog.c @@ -1,18 +1,21 @@ /* apacheLog - stuff to parse out apache web server logs, currently * just the access log. */ +/* Copyright (C) 2011 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #include "common.h" #include "obscure.h" #include "apacheLog.h" void apacheAccessLogFree(struct apacheAccessLog **pLl) /* Free up apacheAccessLog. */ { struct apacheAccessLog *ll = *pLl; if (ll != NULL) { freeMem(ll->buf); freez(pLl); } }