a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/parasol/para/jobDb.c src/parasol/para/jobDb.c
index d18e6b2..c7ca933 100644
--- src/parasol/para/jobDb.c
+++ src/parasol/para/jobDb.c
@@ -1,26 +1,25 @@
 /* jobDb.c was originally generated by the autoSql program, which also 
  * generated jobDb.h and jobDb.sql.  This module links the database and
  * the RAM representation of objects. */
 
 #include "common.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "sqlList.h"
 #include "jobDb.h"
 
-static char const rcsid[] = "$Id: jobDb.c,v 1.9 2008/05/29 20:18:42 galt Exp $";
 
 struct submission *submissionCommaIn(char **pS, struct submission *ret)
 /* Create a submission out of a comma separated string. 
  * This will fill in ret if non-null, otherwise will
  * return a new submission */
 {
 char *s = *pS;
 
 if (ret == NULL)
     AllocVar(ret);
 ret->id = sqlStringComma(&s);
 ret->host = sqlStringComma(&s);
 ret->cpuTime = sqlFloatComma(&s);
 ret->submitTime = sqlUnsignedComma(&s);
 ret->startTime = sqlUnsignedComma(&s);