summaryrefslogtreecommitdiff
path: root/bash/bash-2.05b/rbash-login-shell.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /bash/bash-2.05b/rbash-login-shell.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
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, 0 insertions, 20 deletions
diff --git a/bash/bash-2.05b/rbash-login-shell.patch b/bash/bash-2.05b/rbash-login-shell.patch
deleted file mode 100644
index 7724ceed31..0000000000
--- a/bash/bash-2.05b/rbash-login-shell.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- 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");