summaryrefslogtreecommitdiff
path: root/databases/postgresql93/patches/patch-src_timezone_localtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'databases/postgresql93/patches/patch-src_timezone_localtime.c')
-rw-r--r--databases/postgresql93/patches/patch-src_timezone_localtime.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/databases/postgresql93/patches/patch-src_timezone_localtime.c b/databases/postgresql93/patches/patch-src_timezone_localtime.c
deleted file mode 100644
index afbb792ed70..00000000000
--- a/databases/postgresql93/patches/patch-src_timezone_localtime.c
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-src_timezone_localtime.c,v 1.1 2013/09/10 15:32:32 adam Exp $
-
---- src/timezone/localtime.c.orig 2009-06-11 16:49:15.000000000 +0200
-+++ src/timezone/localtime.c
-@@ -81,20 +81,20 @@ static pg_time_t detzcode64(const char *
- static int differ_by_repeat(pg_time_t t1, pg_time_t t0);
- static const char *getzname(const char *strp);
- static const char *getqzname(const char *strp, int delim);
--static const char *getnum(const char *strp, int *nump, int min, int max);
-+static const char *getnum(const char *strp, int *nump, const int min, const int max);
- static const char *getsecs(const char *strp, long *secsp);
- static const char *getoffset(const char *strp, long *offsetp);
- static const char *getrule(const char *strp, struct rule * rulep);
- static void gmtload(struct state * sp);
--static struct pg_tm *gmtsub(const pg_time_t *timep, long offset,
-+static struct pg_tm *gmtsub(const pg_time_t *timep, const long offset,
- struct pg_tm * tmp);
--static struct pg_tm *localsub(const pg_time_t *timep, long offset,
-+static struct pg_tm *localsub(const pg_time_t *timep, const long offset,
- struct pg_tm * tmp, const pg_tz *tz);
- static int increment_overflow(int *number, int delta);
--static pg_time_t transtime(pg_time_t janfirst, int year,
-- const struct rule * rulep, long offset);
-+static pg_time_t transtime(pg_time_t janfirst, const int year,
-+ const struct rule * rulep, const long offset);
- static int typesequiv(const struct state * sp, int a, int b);
--static struct pg_tm *timesub(const pg_time_t *timep, long offset,
-+static struct pg_tm *timesub(const pg_time_t *timep, const long offset,
- const struct state * sp, struct pg_tm * tmp);
-
- /* GMT timezone */