a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/servBrcMcw.c src/lib/servBrcMcw.c index 17e0a21..6e945d1 100644 --- src/lib/servBrcMcw.c +++ src/lib/servBrcMcw.c @@ -1,48 +1,47 @@ /* Stuff that's specific for .brc.mcw.edu server goes here. * * This file is copyright 2004 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "portable.h" #include "portimpl.h" #include "obscure.h" #include "hash.h" -static char const rcsid[] = "$Id: servBrcMcw.c,v 1.3 2006/06/19 22:02:56 hiram Exp $"; static char *__trashDir = "/trash"; static void _makeTempName(struct tempName *tn, char *base, char *suffix) /* Figure out a temp name, and how CGI and HTML will access it. */ { char *tname; tname = rTempName(__trashDir, base, suffix); strcpy(tn->forCgi, tname); strcpy(tn->forHtml, tname); } static char *_cgiDir() { return "/cgi-bin/"; } static char *_trashDir() { return __trashDir; } static double _speed() { return 3.0; } struct webServerSpecific wssBrcMcw = { "default", _makeTempName, _cgiDir, _speed, _trashDir, };