Changeset aa55b21d23d2071e78c78beef522622c44069311

Show
Ignore:
Timestamp:
11/09/06 16:43:02 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1163086982 +0000
git-parent:

[83a3429c40533f4ee1317f1237883d5cd4bba688]

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

Of course localetime_r has to have another name on Windows.
(And go fix your libc if this does not work for you.)

Files:

Legend:

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

    r2d6efe4 raa55b21  
    234234 
    235235 
     236#ifdef WIN32 
     237static inline struct tm *localtime_r (const time_t *now, struct tm *res) 
     238{ 
     239    return _localtime_s (res, now) ? NULL : res; 
     240} 
     241#endif 
     242 
     243 
    236244static void Trigger (access_t *access) 
    237245{