Changeset 9f3bc4291301d37358d8d9b2525409c734800211
- Timestamp:
- 02/03/04 21:12:53
(5 years ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1075839173 +0000
- git-parent:
[2e29fe8778b750b0e0c7047c72042c23ac5547ca]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1075839173 +0000
- Message:
- http: Err -> Warn for Seek.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r82a6766 |
r9f3bc42 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001-2003 VideoLAN |
|---|
| 5 | | * $Id: http.c,v 1.10 2004/01/25 17:20:18 kuehne Exp $ |
|---|
| | 5 | * $Id: http.c,v 1.11 2004/02/03 20:12:53 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 357 | 357 | static int Seek( sout_access_out_t *p_access, off_t i_pos ) |
|---|
| 358 | 358 | { |
|---|
| 359 | | msg_Err( p_access, "HTTP sout access cannot seek" ); |
|---|
| 360 | | return( VLC_EGENERIC ); |
|---|
| 361 | | } |
|---|
| 362 | | |
|---|
| | 359 | msg_Warn( p_access, "HTTP sout access cannot seek" ); |
|---|
| | 360 | return VLC_EGENERIC; |
|---|
| | 361 | } |
|---|
| | 362 | |
|---|