Changeset 7d4f8eb4371dd03261f3687756e79bbd2003d0f8

Show
Ignore:
Timestamp:
07/25/02 23:53:53 (6 years ago)
Author:
Sigmund Augdal Helberg <sigmunau@videolan.org>
git-committer:
Sigmund Augdal Helberg <sigmunau@videolan.org> 1027634033 +0000
git-parent:

[f168630004ea8f401c3cf035035486dc73c0d82b]

git-author:
Sigmund Augdal Helberg <sigmunau@videolan.org> 1027634033 +0000
Message:

plugin/access/http.c: cosmetic fixes in an error message
src/input/*: removed some testcode and some unnecessary debug messages

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/access/http.c

    r368b29b r7d4f8eb  
    33 ***************************************************************************** 
    44 * Copyright (C) 2001, 2002 VideoLAN 
    5  * $Id: http.c,v 1.17 2002/07/24 18:31:24 sigmunau Exp $ 
     5 * $Id: http.c,v 1.18 2002/07/25 21:53:53 sigmunau Exp $ 
    66 * 
    77 * Authors: Christophe Massiot <massiot@via.ecp.fr> 
     
    207207    else 
    208208    { 
    209         msg_Err( p_input, "http error: invalid http reply" ); 
     209        msg_Err( p_input, "invalid http reply" ); 
    210210        return -1; 
    211211    } 
     
    217217        return -1; 
    218218    } 
     219     
    219220    for( ; ; )  
    220221    { 
  • src/input/input.c

    r44ed9d3 r7d4f8eb  
    55 ***************************************************************************** 
    66 * Copyright (C) 1998-2001 VideoLAN 
    7  * $Id: input.c,v 1.207 2002/07/24 23:11:55 massiot Exp $ 
     7 * $Id: input.c,v 1.208 2002/07/25 21:53:53 sigmunau Exp $ 
    88 * 
    99 * Authors: Christophe Massiot <massiot@via.ecp.fr> 
     
    160160    p_input->stream.p_info->p_next = NULL; 
    161161 
    162     /* test code */ 
    163     msg_Dbg( p_input, "finding category \"hepp\""); 
    164     p_info = input_InfoCategory( p_input, "hepp" ); 
    165     msg_Dbg( p_input, "adding testkey/testval");     
    166     input_AddInfo( p_info, "testkey", "testval"); 
    167     /* end test code */ 
    168  
    169162    msg_Info( p_input, "playlist item `%s'", p_input->psz_source ); 
    170163 
  • src/input/input_info.c

    r97bf3e7 r7d4f8eb  
    33 ***************************************************************************** 
    44 * Copyright (C) 1998-2001 VideoLAN 
    5  * $Id: input_info.c,v 1.3 2002/07/23 00:30:22 sam Exp $ 
     5 * $Id: input_info.c,v 1.4 2002/07/25 21:53:53 sigmunau Exp $ 
    66 * 
    77 * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> 
     
    4242    input_info_category_t * p_category, * p_prev; 
    4343    p_prev = NULL; 
    44     msg_Dbg( p_this, "searching for category"); 
    4544    for ( p_category = p_this->stream.p_info; 
    4645          (p_category != NULL) && strcmp( p_category->psz_name, psz_name );  
     
    5150    if ( p_category ) 
    5251    { 
    53         msg_Dbg(p_this, "found category at %p, with name %s", p_category 
    54             ,p_category->psz_name); 
    5552        return p_category; 
    5653    } 
    5754    else 
    5855    { 
    59         msg_Dbg( p_this, "creating new input category"); 
    6056        p_category = malloc( sizeof( input_info_category_t ) ); 
    6157        if ( !p_category )