# HG changeset patch # User Jim Blandy # Date 723680857 0 # Node ID 3d7bd998e2035f4425b71a462f3d3b5c54564593 # Parent 59aca09e60f81d47681e3be81eb3e0a8238f800d * make-path.c (touchy_mkdir): Remove debugging output. diff -r 59aca09e60f8 -r 3d7bd998e203 lib-src/make-path.c --- a/lib-src/make-path.c Sun Dec 06 22:25:31 1992 +0000 +++ b/lib-src/make-path.c Sun Dec 06 22:27:37 1992 +0000 @@ -37,14 +37,12 @@ { struct stat buf; - fprintf (stderr, "mkdir (\"%s\")\n", path); - - /* If the path already exists and is a directory, return success. */ + /* If PATH already exists and is a directory, return success. */ if (stat (path, &buf) >= 0 && (buf.st_mode & S_IFMT) == S_IFDIR) return 0; - /* Otherwise, try to make it. If path exists but isn't a directory, + /* Otherwise, try to make it. If PATH exists but isn't a directory, this will signal an error. */ if (mkdir (path, 0777) < 0) {