summaryrefslogtreecommitdiff
path: root/data/bash/bash40-026
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2014-09-26 10:03:21 +0000
committerJay Freeman <saurik@saurik.com>2014-09-26 10:03:21 +0000
commitd513c95110fbec3a9c1f6bb3d56e5ecf0971f058 (patch)
tree2183c599c8b9648ee8da49512604fe296c066c31 /data/bash/bash40-026
parenteaacbeade6c101df568afad2308bae83ebd56359 (diff)
Fix the shellshock vulnerability (not regression).
git-svn-id: http://svn.telesphoreo.org/trunk@793 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/bash/bash40-026')
-rw-r--r--data/bash/bash40-02656
1 files changed, 56 insertions, 0 deletions
diff --git a/data/bash/bash40-026 b/data/bash/bash40-026
new file mode 100644
index 000000000..412b2c71b
--- /dev/null
+++ b/data/bash/bash40-026
@@ -0,0 +1,56 @@
+ BASH PATCH REPORT
+ =================
+
+Bash-Release: 4.0
+Patch-ID: bash40-026
+
+Bug-Reported-by: Sergei Steshenko <sergstesh@yahoo.com>
+Bug-Reference-ID: <670181.38883.qm@web35204.mail.mud.yahoo.com>
+Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2009-05/msg00059.html
+
+Bug-Description:
+
+A forgotten line in externs.h caused compilation errors to occur on some
+systems (e.g., Cygwin).
+
+Patch:
+
+*** ../bash-4.0-patched/externs.h 2009-01-18 18:29:29.000000000 -0500
+--- externs.h 2009-06-02 09:05:40.000000000 -0400
+***************
+*** 193,196 ****
+--- 193,198 ----
+
+ /* Declarations for functions defined in lib/sh/fpurge.c */
++
++ #if defined NEED_FPURGE_DECL
+ #if !HAVE_DECL_FPURGE
+
+***************
+*** 201,205 ****
+
+ #endif /* HAVE_DECL_FPURGE */
+!
+
+ /* Declarations for functions defined in lib/sh/getcwd.c */
+--- 203,207 ----
+
+ #endif /* HAVE_DECL_FPURGE */
+! #endif /* NEED_FPURGE_DECL */
+
+ /* Declarations for functions defined in lib/sh/getcwd.c */
+*** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500
+--- patchlevel.h 2009-02-22 16:11:31.000000000 -0500
+***************
+*** 26,30 ****
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 25
+
+ #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+ looks for to find the patch level (for the sccs version string). */
+
+! #define PATCHLEVEL 26
+
+ #endif /* _PATCHLEVEL_H_ */