summaryrefslogtreecommitdiff
path: root/recipes/shadow/files/shadow-4.1.4.2-env-reset-keep-locale.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/shadow/files/shadow-4.1.4.2-env-reset-keep-locale.patch')
-rw-r--r--recipes/shadow/files/shadow-4.1.4.2-env-reset-keep-locale.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/shadow/files/shadow-4.1.4.2-env-reset-keep-locale.patch b/recipes/shadow/files/shadow-4.1.4.2-env-reset-keep-locale.patch
new file mode 100644
index 0000000000..0ce89bf7fc
--- /dev/null
+++ b/recipes/shadow/files/shadow-4.1.4.2-env-reset-keep-locale.patch
@@ -0,0 +1,16 @@
+http://bugs.gentoo.org/283725
+https://alioth.debian.org/tracker/index.php?func=detail&aid=311740&group_id=30580&atid=411480
+
+Index: shadow-4.1.4.2/libmisc/env.c
+===================================================================
+--- shadow-4.1.4.2.orig/libmisc/env.c 2009-04-27 13:07:56.000000000 -0700
++++ shadow-4.1.4.2/libmisc/env.c 2010-06-03 17:44:51.456408474 -0700
+@@ -251,7 +251,7 @@ void sanitize_env (void)
+ if (strncmp (*cur, *bad, strlen (*bad)) != 0) {
+ continue;
+ }
+- if (strchr (*cur, '/') != NULL) {
++ if (strchr (*cur, '/') == NULL) {
+ continue; /* OK */
+ }
+ for (move = cur; NULL != *move; move++) {