Changeset 4c685fc5ccfc01e8d60c18b89363eb17eea6369a
- 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
| r3cd17e7 |
r4c685fc |
|
| 333 | 333 | errno = EINTR; |
|---|
| 334 | 334 | #endif |
|---|
| 335 | | goto error; |
|---|
| | 335 | goto silent; |
|---|
| 336 | 336 | } |
|---|
| 337 | 337 | } |
|---|
| … | … | |
| 404 | 404 | error: |
|---|
| 405 | 405 | msg_Err (p_this, "Read error: %m"); |
|---|
| | 406 | silent: |
|---|
| 406 | 407 | return -1; |
|---|
| 407 | 408 | } |
|---|