Changeset fef83e25a847d4a081d736e147912266ecc4bc7f

Show
Ignore:
Timestamp:
04/28/05 10:18:53 (3 years ago)
Author:
Gildas Bazin <gbazin@videolan.org>
git-committer:
Gildas Bazin <gbazin@videolan.org> 1114676333 +0000
git-parent:

[acd2a608009e5ba7e58d9787b7b954701c52f1e2]

git-author:
Gildas Bazin <gbazin@videolan.org> 1114676333 +0000
Message:

* modules/access_filter/record.c: compilation fix.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access_filter/record.c

    r92ee1ca rfef83e2  
    327327 
    328328#ifdef HAVE_LOCALTIME_R 
    329         if( !localtime_r( &t, &l ) ) 
    330             memset( &l, 0, sizeof(l) ); 
     329        if( !localtime_r( &t, &l ) ) memset( &l, 0, sizeof(l) ); 
    331330#else 
    332331        /* Grrr */ 
    333332        { 
    334333            struct tm *p_l = localtime( &t ); 
    335             if( p_l ) 
    336                 l = *p�l; 
    337             else 
    338                 memset( &l, 0, sizeof(l) ); 
     334            if( p_l ) l = *p_l; 
     335            else memset( &l, 0, sizeof(l) ); 
    339336        } 
    340337#endif