From 2a776c0d78ac63c5bede78ef7a4e786fe14d19a9 Mon Sep 17 00:00:00 2001 From: dm Date: Wed, 17 Apr 1996 17:24:13 +0000 Subject: [PATCH] Shouldn't visually encode execute commands, only file names. --- usr.bin/sup/src/scan.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/usr.bin/sup/src/scan.c b/usr.bin/sup/src/scan.c index 8e634e291bd..8d52fa7777d 100644 --- a/usr.bin/sup/src/scan.c +++ b/usr.bin/sup/src/scan.c @@ -28,6 +28,9 @@ ********************************************************************** * HISTORY * $Log: scan.c,v $ + * Revision 1.2 1996/04/17 17:24:13 dm + * Shouldn't visually encode execute commands, only file names. + * * Revision 1.1 1995/12/16 11:46:50 deraadt * add sup to the tree * @@ -990,7 +993,7 @@ TREE *t; FILE **scanF; { char fname[MAXPATHLEN*4+1]; - strvis(fname, t->Tname, VIS_WHITE); + strcpy(fname, t->Tname); fprintf(*scanF,"X%s\n",fname); return (SCMOK); } -- 2.20.1