aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/mtree
diff options
context:
space:
mode:
authorJoseph Koshy <jkoshy@FreeBSD.org>1999-01-18 06:58:25 +0000
committerJoseph Koshy <jkoshy@FreeBSD.org>1999-01-18 06:58:25 +0000
commit60adf819d22e8031d8591d6473b8b86d31840680 (patch)
tree855837487d36fe8e903919b4c3b46c96c72a9208 /usr.sbin/mtree
parent99ebed6b50a4895223f900ace28f6d98cb261f6a (diff)
downloadsrc-60adf819d22e8031d8591d6473b8b86d31840680.tar.gz
src-60adf819d22e8031d8591d6473b8b86d31840680.zip
Move to a uniform '\ooo' (VIS_OCTAL) encoding for special characters.
The previous commit broke mtree(8) when file names using certain 8-bit characters ended up being encoded with '/', '*', and other shell metacharacters. PR: bin/9538 Submitted by: "Eugene M. Kim" <astralblue@usa.net> Reviewed by: jkoshy Bug-missed-last-time-by: jkoshy
Notes
Notes: svn path=/head/; revision=42787
Diffstat (limited to 'usr.sbin/mtree')
-rw-r--r--usr.sbin/mtree/create.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/mtree/create.c b/usr.sbin/mtree/create.c
index e5fbe2056117..47a5e398fef6 100644
--- a/usr.sbin/mtree/create.c
+++ b/usr.sbin/mtree/create.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)create.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
- "$Id: create.c,v 1.11 1998/08/02 14:41:34 bde Exp $";
+ "$Id: create.c,v 1.12 1999/01/12 02:58:23 jkoshy Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -144,7 +144,7 @@ statf(indent, p)
escaped_name = calloc(1, p->fts_namelen * 4 + 1);
if (escaped_name == NULL)
errx(1, "statf(): calloc() failed");
- strvis(escaped_name, p->fts_name, VIS_WHITE);
+ strvis(escaped_name, p->fts_name, VIS_WHITE | VIS_OCTAL);
if (iflag || S_ISDIR(p->fts_statp->st_mode))
offset = printf("%*s%s", indent, "", escaped_name);