bash30-012 965 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. *** bash-3.0/jobs.c Fri Apr 23 16:28:25 2004
  2. --- bash/jobs.c Wed Aug 18 11:15:07 2004
  3. ***************
  4. *** 1779,1784 ****
  5. {
  6. fail = 0;
  7. ! for (p = jobs[job]->pipe; p->next != jobs[job]->pipe; p = p->next)
  8. ! if (p->status != EXECUTION_SUCCESS) fail = p->status;
  9. return fail;
  10. }
  11. --- 1779,1789 ----
  12. {
  13. fail = 0;
  14. ! p = jobs[job]->pipe;
  15. ! do
  16. ! {
  17. ! if (p->status != EXECUTION_SUCCESS) fail = p->status;
  18. ! p = p->next;
  19. ! }
  20. ! while (p != jobs[job]->pipe);
  21. return fail;
  22. }
  23. *** bash-3.0/patchlevel.h Wed Aug 22 08:05:39 2001
  24. --- bash/patchlevel.h Thu Sep 2 15:04:32 2004
  25. ***************
  26. *** 26,30 ****
  27. looks for to find the patch level (for the sccs version string). */
  28. ! #define PATCHLEVEL 11
  29. #endif /* _PATCHLEVEL_H_ */
  30. --- 26,30 ----
  31. looks for to find the patch level (for the sccs version string). */
  32. ! #define PATCHLEVEL 12
  33. #endif /* _PATCHLEVEL_H_ */