Changeset e25dd0975da804714a182dfe2dfb66d2f79336ce
- Timestamp:
- 05/07/03 23:31:02
(5 years ago)
- Author:
- Alexis de Lattre <alexis@videolan.org>
- git-committer:
- Alexis de Lattre <alexis@videolan.org> 1057440662 +0000
- git-parent:
[f0a708eaebe0ee95de0f979daa410afd2028c978]
- git-author:
- Alexis de Lattre <alexis@videolan.org> 1057440662 +0000
- Message:
es.c: fix typo.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd1196f9 |
re25dd09 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: es.c,v 1.2 2003/04/29 22:44:08 fenrir Exp $ |
|---|
| | 5 | * $Id: es.c,v 1.3 2003/07/05 21:31:02 alexis Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 90 | 90 | |
|---|
| 91 | 91 | p_sys->psz_access = sout_cfg_find_value( p_stream->p_cfg, "access" ); |
|---|
| 92 | | p_sys->psz_access_audio = sout_cfg_find_value( p_stream->p_cfg, "acesss_audio" ); |
|---|
| | 92 | p_sys->psz_access_audio = sout_cfg_find_value( p_stream->p_cfg, "access_audio" ); |
|---|
| 93 | 93 | p_sys->psz_access_video = sout_cfg_find_value( p_stream->p_cfg, "access_video" ); |
|---|
| 94 | 94 | |
|---|