a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/log.c src/lib/log.c index 45b7035..0ad9b32 100644 --- src/lib/log.c +++ src/lib/log.c @@ -1,31 +1,30 @@ /* log.c - logging for servers, can log to a file and/or syslog. Compile with * -DNO_SYSLOG for systems without syslog. */ #include "common.h" #include "log.h" #include "errabort.h" #include "dystring.h" #include "options.h" #include "portable.h" #ifndef NO_SYSLOG #include <syslog.h> #endif #include <time.h> -static char const rcsid[] = "$Id: log.c,v 1.10 2010/01/12 09:06:24 markd Exp $"; static char *gProgram = "unknown"; /* name of program */ static boolean gSysLogOn = FALSE; /* syslog logging enabled? */ static FILE *gLogFh = NULL; /* logging file */ struct nameVal /* pair of string name and integer value */ { char *name; int val; }; #ifndef NO_SYSLOG static struct nameVal facilityNameTbl[] =