]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Rename SAFE_STAT to safe_stat.
authorJim Meyering <jim@meyering.net>
Fri, 27 Jan 1995 17:05:42 +0000 (17:05 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 27 Jan 1995 17:05:42 +0000 (17:05 +0000)
lib/mkdir.c

index 1a5ba2ddcf86d5240852ab4bc74ad94ac5d12e38..07bd83deaf25edaa0ad26223984af8641e4d5f68 100644 (file)
@@ -57,7 +57,7 @@ mkdir (dpath, dmode)
   int cpid, status;
   struct stat statbuf;
 
-  if (SAFE_STAT (dpath, &statbuf) == 0)
+  if (safe_stat (dpath, &statbuf) == 0)
     {
       errno = EEXIST;          /* stat worked, so it already exists.  */
       return -1;