Changeset 4c685fc5ccfc01e8d60c18b89363eb17eea6369a

Show
Ignore:
Timestamp:
03/04/08 20:01:40 (6 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1204657300 +0200
git-parent:

[7af51d108fe596be66dccdf79ea13f44bfcf655a]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1204657268 +0200
Message:

Remove misleading dummy "Interrupted system call" error from net_Read

Signed-off-by: Rémi Denis-Courmont <rem@videolan.org>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/network/io.c

    r3cd17e7 r4c685fc  
    333333                errno = EINTR; 
    334334#endif 
    335                 goto error
     335                goto silent
    336336            } 
    337337        } 
     
    404404error: 
    405405    msg_Err (p_this, "Read error: %m"); 
     406silent: 
    406407    return -1; 
    407408}