a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/servCrunx.c src/lib/servCrunx.c
index 9fcdcd8..a85e1f7 100644
--- src/lib/servCrunx.c
+++ src/lib/servCrunx.c
@@ -1,26 +1,25 @@
 /* Stuff that's specific for local linux 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: servCrunx.c,v 1.7 2006/06/19 22:02:56 hiram Exp $";
 
 static char *__trashDir = "/home/httpd/html/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;
 char *tempDirCgi = __trashDir;
 char *tempDirHtml = "/trash";
 int tlcLen = strlen(tempDirCgi);
 int tlhLen = strlen(tempDirHtml);
 
 tname = rTempName(tempDirCgi, base, suffix);
 strcpy(tn->forCgi, tname);
 memcpy(tn->forHtml, tempDirHtml, tlhLen);