From: Jim Meyering Date: Sun, 30 Jul 2000 16:03:37 +0000 (+0000) Subject: (remove_cwd_entries): Quote one more file name. X-Git-Tag: TEXTUTILS-2_0g~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4365673c50e108267ce592cd7b56c3dc198825f;p=thirdparty%2Fcoreutils.git (remove_cwd_entries): Quote one more file name. --- diff --git a/src/remove.c b/src/remove.c index 6b8614fac0..65560db46d 100644 --- a/src/remove.c +++ b/src/remove.c @@ -463,7 +463,7 @@ remove_cwd_entries (const struct rm_options *x) if (CLOSEDIR (dirp)) { /* FIXME-someday: but this is actually the previously opened dir. */ - error (0, errno, "%s", full_filename (".")); + error (0, errno, "%s", quote (full_filename ("."))); status = RM_ERROR; } dirp = NULL;