Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 447810 | Differences between
and this patch

Collapse All | Expand All

(-)bash-4.2.orig/redir.c (-1 / +3 lines)
Lines 632-638 Link Here
632
    }
632
    }
633
  else
633
  else
634
    {
634
    {
635
      fd = open (filename, flags, mode);
635
      do {
636
	fd = open (filename, flags, mode);
637
      } while ((fd < 0) && (errno == EINTR));
636
#if defined (AFS)
638
#if defined (AFS)
637
      if ((fd < 0) && (errno == EACCES))
639
      if ((fd < 0) && (errno == EACCES))
638
	{
640
	{

Return to bug 447810