0044-patchlevel-44.patch 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-044
  2. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
  3. BASH PATCH REPORT
  4. =================
  5. Bash-Release: 4.3
  6. Patch-ID: bash43-044
  7. Bug-Reported-by: Ondrej Oprala <ooprala@redhat.com>
  8. Bug-Reference-ID: <539ED55B.2080103@redhat.com>
  9. Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-06/msg00046.html
  10. Bug-Description:
  11. A typo prevents the `compat42' shopt option from working as intended.
  12. Patch (apply with `patch -p0'):
  13. diff -rC 2 bash-4.3.42/builtins/shopt.def bash-4.3.43/builtins/shopt.def
  14. *** a/builtins/shopt.def 2013-02-27 09:43:20.000000000 -0500
  15. --- b/builtins/shopt.def 2015-10-16 11:25:28.000000000 -0400
  16. ***************
  17. *** 161,165 ****
  18. { "compat40", &shopt_compat40, set_compatibility_level },
  19. { "compat41", &shopt_compat41, set_compatibility_level },
  20. ! { "compat42", &shopt_compat41, set_compatibility_level },
  21. #if defined (READLINE)
  22. { "complete_fullquote", &complete_fullquote, (shopt_set_func_t *)NULL},
  23. --- 161,165 ----
  24. { "compat40", &shopt_compat40, set_compatibility_level },
  25. { "compat41", &shopt_compat41, set_compatibility_level },
  26. ! { "compat42", &shopt_compat42, set_compatibility_level },
  27. #if defined (READLINE)
  28. { "complete_fullquote", &complete_fullquote, (shopt_set_func_t *)NULL},
  29. *** a/patchlevel.h 2012-12-29 10:47:57.000000000 -0500
  30. --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400
  31. ***************
  32. *** 26,30 ****
  33. looks for to find the patch level (for the sccs version string). */
  34. ! #define PATCHLEVEL 43
  35. #endif /* _PATCHLEVEL_H_ */
  36. --- 26,30 ----
  37. looks for to find the patch level (for the sccs version string). */
  38. ! #define PATCHLEVEL 44
  39. #endif /* _PATCHLEVEL_H_ */