diff options
Diffstat (limited to 'app-shells/bash/files/bash-2.05b-rbash.patch')
-rw-r--r-- | app-shells/bash/files/bash-2.05b-rbash.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/app-shells/bash/files/bash-2.05b-rbash.patch b/app-shells/bash/files/bash-2.05b-rbash.patch deleted file mode 100644 index a08159f14f3b..000000000000 --- a/app-shells/bash/files/bash-2.05b-rbash.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nru bash-2.05b.orig/shell.c bash-2.05b/shell.c ---- bash-2.05b.orig/shell.c 2002-07-01 11:27:11.000000000 -0400 -+++ bash-2.05b/shell.c 2003-08-18 21:20:26.000000000 -0400 -@@ -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"); |