summaryrefslogtreecommitdiff
path: root/bash/bash-2.05b/rbash-login-shell.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
committerChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
commitf96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch)
treeedb17ec2c4ea13c5acb1c7350957a249a820e28d /bash/bash-2.05b/rbash-login-shell.patch
parentb6588aa6851fb220cedc387d21c51513ef8d67f4 (diff)
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'bash/bash-2.05b/rbash-login-shell.patch')
-rw-r--r--bash/bash-2.05b/rbash-login-shell.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/bash/bash-2.05b/rbash-login-shell.patch b/bash/bash-2.05b/rbash-login-shell.patch
index e69de29bb2..7724ceed31 100644
--- a/bash/bash-2.05b/rbash-login-shell.patch
+++ b/bash/bash-2.05b/rbash-login-shell.patch
@@ -0,0 +1,20 @@
+--- bash-2.05b/shell.c.ORI 2003-01-16 12:23:56.000000000 +0100
++++ bash-2.05b/shell.c 2003-01-16 12:25:52.000000000 +0100
+@@ -1065,7 +1065,7 @@
+ if (restricted)
+ return 1;
+ temp = base_pathname (name);
+- return (STREQ (temp, RESTRICTED_SHELL_NAME));
++ return ( (STREQ (temp, RESTRICTED_SHELL_NAME)) || (STREQ (temp, ("-"RESTRICTED_SHELL_NAME))) );
+ }
+
+ /* Perhaps make this shell a `restricted' one, based on NAME. If the
+@@ -1082,7 +1082,7 @@
+ char *temp;
+
+ temp = base_pathname (name);
+- if (restricted || (STREQ (temp, RESTRICTED_SHELL_NAME)))
++ if (restricted || (STREQ (temp, RESTRICTED_SHELL_NAME)) || (STREQ (temp, ("-"RESTRICTED_SHELL_NAME))) )
+ {
+ set_var_read_only ("PATH");
+ set_var_read_only ("SHELL");