diff rvinterf/etmsync/fsread.c @ 276:d332fbf5c145

etmsync: host_mkdir() function factored out of fc-fsio
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 17 Nov 2017 00:26:09 +0000
parents 46ad66a231af
children 74d284add54d
line wrap: on
line diff
--- a/rvinterf/etmsync/fsread.c	Fri Nov 17 00:03:21 2017 +0000
+++ b/rvinterf/etmsync/fsread.c	Fri Nov 17 00:26:09 2017 +0000
@@ -203,32 +203,6 @@
 	return fd_close(tfd);
 }
 
-host_mkdir(pathname)
-	char *pathname;
-{
-	int rc;
-	struct stat st;
-
-	rc = stat(pathname, &st);
-	if (rc < 0) {
-		rc = mkdir(pathname, 0777);
-		if (rc < 0) {
-			perror(pathname);
-			return(ERROR_UNIX);
-		}
-		return(0);
-	} else {
-		if (S_ISDIR(st.st_mode))
-			return(0);
-		else {
-			fprintf(stderr,
-			"error: %s already exists and is not a directory\n",
-				pathname);
-			return(ERROR_UNIX);
-		}
-	}
-}
-
 cpout_dir(ffspath_dir, hostpath_dir)
 	char *ffspath_dir, *hostpath_dir;
 {