a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/portimpl.c src/lib/portimpl.c
index 8fe8082..c0a7d19 100644
--- src/lib/portimpl.c
+++ src/lib/portimpl.c
@@ -1,29 +1,28 @@
 /* Implementation file for some portability stuff mostly aimed
  * at making the same code run under different web servers.
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "htmshell.h"
 #include "portable.h"
 #include "obscure.h"
 #include "portimpl.h"
 #include <dirent.h>
 
-static char const rcsid[] = "$Id: portimpl.c,v 1.16 2010/04/21 19:23:47 galt Exp $";
 
 static struct webServerSpecific *wss = NULL;
 
 static void setupWss()
 {
 if (wss == NULL)
     {
     char *s = getenv("SERVER_SOFTWARE");
     wss = &wssDefault;
     if (s == NULL)
         {
 	wss = &wssCommandLine;
         }
     else
         {