Commit 9155f25c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix linking

parent 71713be8
...@@ -2,12 +2,14 @@ ...@@ -2,12 +2,14 @@
* udp.c: raw UDP & RTP input module * udp.c: raw UDP & RTP input module
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2005 the VideoLAN team * Copyright (C) 2001-2005 the VideoLAN team
* Copyright (C) 2007 Remi Denis-Courmont
* $Id$ * $Id$
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Tristan Leteurtre <tooney@via.ecp.fr> * Tristan Leteurtre <tooney@via.ecp.fr>
* Laurent Aimar <fenrir@via.ecp.fr> * Laurent Aimar <fenrir@via.ecp.fr>
* Jean-Paul Saman <jpsaman #_at_# m2x dot nl> * Jean-Paul Saman <jpsaman #_at_# m2x dot nl>
* Remi Denis-Courmont
* *
* Reviewed: 23 October 2003, Jean-Paul Saman <jpsaman _at_ videolan _dot_ org> * Reviewed: 23 October 2003, Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
* *
...@@ -206,8 +208,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -206,8 +208,8 @@ static int Open( vlc_object_t *p_this )
p_access->info.b_prebuffered = VLC_FALSE; p_access->info.b_prebuffered = VLC_FALSE;
MALLOC_ERR( p_access->p_sys, access_sys_t ); p_sys = p_access->p_sys; MALLOC_ERR( p_access->p_sys, access_sys_t ); p_sys = p_access->p_sys;
p_sys->fd = net_Open( p_access, psz_bind_addr, i_bind_port, p_sys->fd = net_OpenDgram( p_access, psz_bind_addr, i_bind_port,
psz_server_addr, i_server_port, fam, SOCK_DGRAM, proto ); psz_server_addr, i_server_port, fam, SOCK_DGRAM, proto );
free (psz_name); free (psz_name);
if( p_sys->fd == -1 ) if( p_sys->fd == -1 )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment