Include "quotearg.h", not "quote.h".
authorJim Meyering <jim@meyering.net>
Wed, 22 Jun 2005 15:25:23 +0000 (15:25 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 22 Jun 2005 15:25:23 +0000 (15:25 +0000)
(remove_parents, main): Use quotearg_colon, not quote.

src/rmdir.c

index 812f0aa..79b00b6 100644 (file)
@@ -30,7 +30,7 @@
 #include "system.h"
 #include "dirname.h"
 #include "error.h"
-#include "quote.h"
+#include "quotearg.h"
 
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "rmdir"
@@ -128,7 +128,7 @@ remove_parents (char *dir)
            }
          else
            {
-             error (0, errno, "%s", quote (dir));
+             error (0, errno, "%s", quotearg_colon (dir));
            }
          break;
        }
@@ -220,7 +220,7 @@ main (int argc, char **argv)
              && errno_rmdir_non_empty (errno))
            continue;
 
-         error (0, errno, "%s", quote (dir));
+         error (0, errno, "%s", quotearg_colon (dir));
          ok = false;
        }
       else if (remove_empty_parents)