a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/spDb.c src/hg/lib/spDb.c
index 82b4598..187b57f 100644
--- src/hg/lib/spDb.c
+++ src/hg/lib/spDb.c
@@ -1,25 +1,24 @@
 /* spTest - Test out sp library.. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "dystring.h"
 #include "jksql.h"
 #include "hdb.h"
 #include "spDb.h"
 
-static char const rcsid[] = "$Id: spDb.c,v 1.19 2008/09/03 19:19:27 markd Exp $";
 
 boolean spIsPrimaryAcc(struct sqlConnection *conn, char *acc)
 /* Return TRUE if this is a primary accession in database. */
 {
 char query[256]; 
 SpAcc temp;
 safef(query, sizeof(query), "select acc from displayId where acc = '%s'",
 	acc);
 return sqlQuickQuery(conn, query, temp, sizeof(temp)) != NULL;
 }
 
 char *spFindAcc(struct sqlConnection *conn, char *id)
 /* Return primary accession given either display ID,
  * primary accession, or secondary accession.  Return
  * NULL if not found. */