bash30-007 891 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. *** bash-3.0/braces.c Thu Dec 4 11:09:52 2003
  2. --- bash/braces.c Wed Aug 4 14:34:33 2004
  3. ***************
  4. *** 341,346 ****
  5. if (lhs_t == ST_CHAR)
  6. {
  7. ! lhs_v = lhs[0];
  8. ! rhs_v = rhs[0];
  9. }
  10. else
  11. --- 341,346 ----
  12. if (lhs_t == ST_CHAR)
  13. {
  14. ! lhs_v = (unsigned char)lhs[0];
  15. ! rhs_v = (unsigned char)rhs[0];
  16. }
  17. else
  18. ***************
  19. *** 403,406 ****
  20. --- 403,407 ----
  21. pass_next = 1;
  22. i++;
  23. + level++;
  24. continue;
  25. }
  26. *** bash-3.0/patchlevel.h Wed Aug 22 08:05:39 2001
  27. --- bash/patchlevel.h Thu Sep 2 15:04:32 2004
  28. ***************
  29. *** 26,30 ****
  30. looks for to find the patch level (for the sccs version string). */
  31. ! #define PATCHLEVEL 6
  32. #endif /* _PATCHLEVEL_H_ */
  33. --- 26,30 ----
  34. looks for to find the patch level (for the sccs version string). */
  35. ! #define PATCHLEVEL 7
  36. #endif /* _PATCHLEVEL_H_ */