(make_path): Use stat, not SAFE_STAT.
[gnulib.git] / lib / rmdir.c
index 477227b..a8c1f49 100644 (file)
@@ -49,7 +49,7 @@ rmdir (dpath)
   int cpid, status;
   struct stat statbuf;
 
-  if (SAFE_STAT (dpath, &statbuf) != 0)
+  if (stat (dpath, &statbuf) != 0)
     return -1;                 /* errno already set */
 
   if (!S_ISDIR (statbuf.st_mode))