Fixed mv so it now does the right thing (same method used in cp).  Removed
some cruft from cp.
 -Erik
diff --git a/coreutils/cp.c b/coreutils/cp.c
index 1e10f28..8346019 100644
--- a/coreutils/cp.c
+++ b/coreutils/cp.c
@@ -43,7 +43,6 @@
 static const char *srcName;
 static const char *destName;
 static int destDirFlag = FALSE;
-static int destExistsFlag = FALSE;
 static int srcDirFlag = FALSE;
 
 static int fileAction(const char *fileName, struct stat* statbuf)
@@ -71,8 +70,6 @@
 
 extern int cp_main(int argc, char **argv)
 {
-    struct stat statBuf;
-
     if (argc < 3) {
 	usage (cp_usage);
     }
@@ -106,11 +103,7 @@
 
 
     destName = argv[argc - 1];
-    if (stat(destName, &statBuf) >= 0) {
-	destExistsFlag = TRUE;
-	if (S_ISDIR(statBuf.st_mode))
-	    destDirFlag = TRUE;
-    }
+    destDirFlag = isDirectory(destName);
 
     if ((argc > 3) && destDirFlag==FALSE) {
 	fprintf(stderr, "%s: not a directory\n", destName);