From 62003938d5d8b847b579c16bdcd1068ab092d3e4 Mon Sep 17 00:00:00 2001 From: Benjamin Pracht Date: Sat, 2 Aug 2003 19:30:35 +0000 Subject: [PATCH] * modules/access/http.c - Didn't take into consideration a little change of behavior between config_GetPsz and var_Get during my last commit, so that we were sending authentification information even if there wasn't any. --- modules/access/http.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/access/http.c b/modules/access/http.c index cefda1c536..ecfc62041f 100644 --- a/modules/access/http.c +++ b/modules/access/http.c @@ -2,7 +2,7 @@ * http.c: HTTP access plug-in ***************************************************************************** * Copyright (C) 2001, 2002 VideoLAN - * $Id: http.c,v 1.42 2003/08/01 09:45:34 sam Exp $ + * $Id: http.c,v 1.43 2003/08/02 19:30:35 bigben Exp $ * * Authors: Christophe Massiot * @@ -606,7 +606,7 @@ static int Open( vlc_object_t *p_this ) /* Handle autehtification */ - if ( psz_user == NULL ) + if ( !psz_user ) { var_Create( p_input, "http-user", VLC_VAR_STRING | VLC_VAR_DOINHERIT ); var_Get( p_input, "http-user", &val ); @@ -617,7 +617,7 @@ static int Open( vlc_object_t *p_this ) psz_pwd = val.psz_string; } - if (psz_user != NULL) + if ( *psz_user ) { char psz_user_pwd[MAX_QUERY_SIZE]; msg_Dbg( p_input, "authenticating, user=%s, password=%s", -- 2.39.2