Changeset 21d7f14bbe121b27de988a11ca8d8664d1fb27c5

Show
Ignore:
Timestamp:
13/07/05 19:16:09 (3 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1121274969 +0000
git-parent:

[fcd1b6754b2e68bee5364163807597d0629140cd]

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

Fix warnings (refs #258)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/misc/gnutls.c

    rfe087a3 r21d7f14  
    22 * tls.c 
    33 ***************************************************************************** 
    4  * Copyright (C) 2004-2005 the VideoLAN team 
     4 * Copyright (C) 2004-2005 Rémi Denis-Courmont 
    55 * $Id$ 
    66 * 
    7  * Authors: Remi Denis-Courmont <rem # videolan.org> 
     7 * Authors: Rémi Denis-Courmont <rem # videolan.org> 
    88 * 
    99 * This program is free software; you can redistribute it and/or modify 
     
    263263    if( val == 0 ) 
    264264    { 
    265         int status; 
     265        unsigned status; 
    266266        gnutls_x509_crt cert; 
    267267        const gnutls_datum *p_data; 
     
    300300 
    301301        /* certificate (host)name verification */ 
    302         p_data = gnutls_certificate_get_peers( p_sys->session, &val ); 
     302        p_data = gnutls_certificate_get_peers( p_sys->session, &status ); 
    303303        if( p_data == NULL ) 
    304304        {