Changeset 681637abe8ad32a07b614a7f3cd797d089e58fc7

Show
Ignore:
Timestamp:
12/22/07 16:53:38 (9 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1198338818 +0000
git-parent:

[e59bea7b82ac4f79a169677d8d9aa753d3d3c10e]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1198338818 +0000
Message:

Add an error message

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/misc/objects.c

    r77ca784 r681637a  
    6565# include <io.h> 
    6666# include <fcntl.h> 
     67# include <errno.h> /* ENOSYS */ 
    6768#endif 
    6869 
     
    494495#ifndef WIN32 
    495496        if( pipe( pipes ) ) 
     497#else 
     498        errno = ENOSYS; 
    496499#endif 
    497500            return -1; 
  • src/network/httpd.c

    re59bea7 r681637a  
    10721072    if( vlc_object_waitpipe( VLC_OBJECT( host ) ) == -1 ) 
    10731073    { 
     1074        msg_Err( host, "signaling pipe error: %m") 
    10741075        vlc_object_unlock( host ); 
    10751076        goto error;