a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/servmsII.c src/lib/servmsII.c index 88f0d42..c56c6c3 100644 --- src/lib/servmsII.c +++ src/lib/servmsII.c @@ -1,46 +1,45 @@ /* Stuff that's specific for the MS II Web Server goes here. * * This file is copyright 2002 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" -static char const rcsid[] = "$Id: servmsII.c,v 1.6 2006/06/19 22:02:57 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. */ { long tempIx = incCounterFile("tcounter"); sprintf(tn->forCgi, "%s\\%s%ld%s", __trashDir, base, tempIx, suffix); sprintf(tn->forHtml, "%s\\%s%ld%s", __trashDir, base, tempIx, suffix); } static char *_cgiDir() { return ""; } static char *_trashDir() { return __trashDir; } static double _speed() { return 2.5; } struct webServerSpecific wssMicrosoftII = { "Microsoft-IIS", _makeTempName, _cgiDir, _speed, _trashDir, };