summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-12-06 22:27:37 +0000
committerJim Blandy <jimb@redhat.com>1992-12-06 22:27:37 +0000
commit1ff63a98e8f84719e045dd65672599ac4f0e2066 (patch)
treeb320bfefe0031985a9e0b2530ab9c2fd4e32d6ac /lib-src
parent47e7c11c7ec1c6f1a7a7147897993b671b2a1e50 (diff)
downloademacs-1ff63a98e8f84719e045dd65672599ac4f0e2066.tar.gz
* make-path.c (touchy_mkdir): Remove debugging output.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/make-path.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib-src/make-path.c b/lib-src/make-path.c
index 9409583b53b..6741aa34b95 100644
--- a/lib-src/make-path.c
+++ b/lib-src/make-path.c
@@ -37,14 +37,12 @@ int touchy_mkdir (path)
{
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)
{