a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/ccCpLock/ccCp.3.c src/utils/ccCpLock/ccCp.3.c
index fd01217..e398bde 100644
--- src/utils/ccCpLock/ccCp.3.c
+++ src/utils/ccCpLock/ccCp.3.c
@@ -1,22 +1,21 @@
 /* ccCp - copy file to the cluster efficiently. */
 #include "common.h"
 #include "obscure.h"
 #include "portable.h"
 #include "dystring.h"
 
-static char const rcsid[] = "$Id: ccCp.3.c,v 1.2 2003/05/06 07:41:04 kate 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);