Hi!
----
Attached is a small patch ("ksh93_xxx93_suffix_support001.diff.txt") for
ksh93 which fixes the problem that a shell started with "rksh93" wasn't
running in restricted mode.
BTW: What is the deadline for submitting new patches for the next alpha
version of ksh93r+ (I still have a bunch of compiler warning fixes in my
queue) ?
----
Bye,
Roland
--
__ . . __
(o.\ \/ /.o) roland.mainz at nrubsig.org
\__\/\/__/ MPEG specialist, C&&JAVA&&Sun&&Unix programmer
/O /==\ O\ TEL +49 641 7950090
(;O/ \/ \O;)
-------------- next part --------------
Index: src/lib/libshell/common/sh/init.c
===================================================================
--- src/lib/libshell/common/sh/init.c (revision 332)
+++ src/lib/libshell/common/sh/init.c (working copy)
@@ -176,8 +176,8 @@
# define EXE
#endif
-static const char rsh_pattern[] = "@(rk|kr|r)sh" EXE;
-static const char pfsh_pattern[] = "pf?(k)sh" EXE;
+static const char rsh_pattern[] = "@(rk|kr|r)sh?(93)" EXE;
+static const char pfsh_pattern[] = "pf?(k)sh?(93)" EXE;
static const char bash_pattern[] = "?(r)bash" EXE;
static int rand_shift;