diff --git a/modules/access/rtp/input.c b/modules/access/rtp/input.c index 18dac00ea7c692553a53aeafe075f94a96b10ee0..53976494e2752789180792b56024e90156b6dbc0 100644 --- a/modules/access/rtp/input.c +++ b/modules/access/rtp/input.c @@ -30,6 +30,7 @@ #include <vlc_network.h> #include <limits.h> +#include <errno.h> #include <unistd.h> #ifdef HAVE_POLL # include <poll.h> @@ -136,7 +137,8 @@ void *rtp_dgram_thread (void *opaque) } else { - msg_Warn (demux, "RTP network error: %m"); + msg_Warn (demux, "RTP network error: %s", + vlc_strerror_c(errno)); block_Release (block); } } diff --git a/modules/access/rtp/rtp.c b/modules/access/rtp/rtp.c index 19361291d1cb3bd43be798a19d86c6f4803ffa6b..455c0e82f709224f0243fd78d333f772c89e3a0e 100644 --- a/modules/access/rtp/rtp.c +++ b/modules/access/rtp/rtp.c @@ -26,7 +26,6 @@ #endif #include <stdarg.h> #include <assert.h> -#include <errno.h> #include <vlc_common.h> #include <vlc_demux.h> @@ -290,12 +289,13 @@ static int Open (vlc_object_t *obj) } char *salt = var_CreateGetNonEmptyString (demux, "srtp-salt"); - errno = srtp_setkeystring (p_sys->srtp, key, salt ? salt : ""); + int val = srtp_setkeystring (p_sys->srtp, key, salt ? salt : ""); free (salt); free (key); - if (errno) + if (val) { - msg_Err (obj, "bad SRTP key/salt combination (%m)"); + msg_Err (obj, "bad SRTP key/salt combination (%s)", + vlc_strerror_c(val)); goto error; } } diff --git a/modules/stream_out/rtp.c b/modules/stream_out/rtp.c index 62c89b7baf77b1c8019b07701798dc41ae7b3e49..68a5f07b91f1cfb2ccd4d34daa1342d1b2bf0c1f 100644 --- a/modules/stream_out/rtp.c +++ b/modules/stream_out/rtp.c @@ -1039,12 +1039,13 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt ) } char *salt = var_GetNonEmptyString (p_stream, SOUT_CFG_PREFIX"salt"); - errno = srtp_setkeystring (id->srtp, key, salt ? salt : ""); + int val = srtp_setkeystring (id->srtp, key, salt ? salt : ""); free (salt); free (key); - if (errno) + if (val) { - msg_Err (p_stream, "bad SRTP key/salt combination (%m)"); + msg_Err (p_stream, "bad SRTP key/salt combination (%s)", + vlc_strerror_c(val)); goto error; } id->i_sequence = 0; /* FIXME: awful hack for libvlc_srtp */ @@ -1329,8 +1330,8 @@ static int FileSetup( sout_stream_t *p_stream ) if( ( f = vlc_fopen( p_sys->psz_sdp_file, "wt" ) ) == NULL ) { - msg_Err( p_stream, "cannot open file '%s' (%m)", - p_sys->psz_sdp_file ); + msg_Err( p_stream, "cannot open file '%s' (%s)", + p_sys->psz_sdp_file, vlc_strerror_c(errno) ); return VLC_EGENERIC; } @@ -1421,8 +1422,8 @@ static void* ThreadSend( void *data ) vlc_restorecancel (canc); if( val ) { - errno = val; - msg_Dbg( id->p_stream, "SRTP sending error: %m" ); + msg_Dbg( id->p_stream, "SRTP sending error: %s", + vlc_strerror_c(val) ); block_Release( out ); out = NULL; }