mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Tweak zic.c to compile cleanly on MSVC: use CopyFile instead of
CopyFileEx. This avoids a warning about the function not being present on older Windows versions. Magnus Hagander
This commit is contained in:
parent
9601745d35
commit
d8221dfa6d
@ -3,7 +3,7 @@
|
||||
* 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/timezone/zic.c,v 1.18 2006/10/19 20:38:48 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/timezone/zic.c,v 1.19 2006/10/24 15:11:03 tgl Exp $
|
||||
*/
|
||||
|
||||
#include "postgres.h"
|
||||
@ -2383,7 +2383,7 @@ eitol(int i)
|
||||
int
|
||||
link(const char *oldpath, const char *newpath)
|
||||
{
|
||||
if (!CopyFileEx(oldpath, newpath, NULL, NULL, FALSE, 0))
|
||||
if (!CopyFile(oldpath, newpath, FALSE))
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user