a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/ccCpLock/ccCp.c src/utils/ccCpLock/ccCp.c
index d7ad292..2523c6f 100644
--- src/utils/ccCpLock/ccCp.c
+++ src/utils/ccCpLock/ccCp.c
@@ -1,23 +1,22 @@
 /* ccCp - copy file to the cluster efficiently.  Uses file lock
  * mechanism. */
 #include "common.h"
 #include "obscure.h"
 #include "portable.h"
 #include "dystring.h"
 
-static char const rcsid[] = "$Id: ccCp.c,v 1.3 2005/03/04 20:05:37 galt Exp $";
 
 boolean amFirst = FALSE; /* Is this the copy that launched the copies? */
 
 char *fullPathName(char *relName)
 /* Return full version of path name. */
 {
 char firstChar = relName[0];
 char fullPath[512];
 char dir[512];
 
 if (firstChar == '/' || firstChar == '~')
     return cloneString(relName);
 getcwd(dir, sizeof(dir));
 sprintf(fullPath, "%s/%s", dir, relName);
 return cloneString(fullPath);