Changeset 795fb9bc6f57b6baf2469ddba9a347da1af933c3

Show
Ignore:
Timestamp:
01/28/08 17:33:02 (7 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1201537982 +0000
git-parent:

[a9eeb55307274d9510a55d29e1613ede8895d9bf]

git-author:
Rafaël Carré <funman@videolan.org> 1201537982 +0000
Message:

network/udp.c net_SetCSCov(): removes warnings if UDPLITE_RECV_CSCOV and DCCP_SOCKOPT_SEND_CSCOV are not defined

Files:

Legend:

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

    r99fab90 r795fb9b  
    834834int net_SetCSCov (int fd, int sendcov, int recvcov) 
    835835{ 
     836#if !defined( UDPLITE_RECV_CSCOV ) && !defined( DCCP_SOCKOPT_SEND_CSCOV ) 
     837    VLC_UNUSED(sendcov); 
     838    VLC_UNUSED(recvcov); 
     839    return VLC_EGENERIC; 
     840#endif 
     841 
    836842    int type; 
    837843