a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgc/virusClick.c src/hg/hgc/virusClick.c
index f87db2e..7a1e772 100644
--- src/hg/hgc/virusClick.c
+++ src/hg/hgc/virusClick.c
@@ -1,31 +1,30 @@
 /* virusClick - hgc code for a prototype virus browser on the h1n1 genome */
 
 #include "common.h"
 #include "hgc.h"
 #include "virusClick.h"
 #include "hCommon.h"
 #include "hgConfig.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "lsSnpPdbChimera.h"
 #include "jksql.h"
 #include "net.h"
 #include "trashDir.h"
 #include "htmshell.h"
 
-static char const rcsid[] = "$Id: virusClick.c,v 1.9 2010/05/24 20:19:22 kent Exp $";
 
 static void h1n1DownloadPdb(char *item, char *pdbUrl, struct tempName *tmpPdb)
 /* uncompress PDB to trash */
 {
 int inFd = netOpenHttpExt(pdbUrl, "GET", NULL);
 int inFdRedir = 0;
 char *pdbUrlRedir = NULL;
 if (!netSkipHttpHeaderLinesHandlingRedirect(inFd, pdbUrl, &inFdRedir, &pdbUrlRedir))
     errAbort("Unable to access predicted 3D structure file: %s", pdbUrl);
 if (pdbUrlRedir != NULL)
     {
     close(inFd);
     inFd = inFdRedir;
     freez(&pdbUrlRedir);
     }