8000 Fix for version, update to 6.5. · rtpg/postgres@a2aae54 · GitHub
[go: up one dir, main page]

Skip to content

Commit a2aae54

Browse files
committed
Fix for version, update to 6.5.
1 parent 85e3bf1 commit a2aae54

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/backend/port/snprintf.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
/* IRIX doesn't do 'long long' in va_arg(), so use a typedef */
5252
#ifdef HAVE_LONG_LONG_INT_64
5353
typedef long long long_long;
54+
typedef unsigned long long ulong_long;
5455
#endif
5556

5657
/*
@@ -75,7 +76,7 @@ typedef long long long_long;
7576
* causing nast effects.
7677
**************************************************************/
7778

78-
/*static char _id[] = "$Id: snprintf.c,v 1.10.2.2 1998/12/18 07:03:29 momjian Exp $";*/
79+
/*static char _id[] = "$Id: snprintf.c,v 1.10.2.3 1998/12/25 02:20:41 momjian Exp $";*/
7980
static char *end;
8081
static int SnprfOverflow;
8182

@@ -363,7 +364,7 @@ int base,
363364
{
364365
int signvalue = 0;
365366
#ifdef HAVE_LONG_LONG_INT_64
366-
unsigned long long uvalue;
367+
ulong_long uvalue;
367368
#else
368369
unsigned long uvalue;
369370
#endif

src/include/version.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* this file contains the interface to version.c.
55
* Also some parameters.
66
*
7-
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.3 1998/07/19 04:16:53 momjian Exp $
7+
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.3.2.1 1998/12/25 02:20:41 momjian Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -16,7 +16,7 @@ void SetPgVersion(const char *path, char **reason_p);
1616

1717
#define PG_RELEASE "6"
1818
#define PG_VERSION "4"
19-
#define PG_SUBVERSION "0"
19+
#define PG_SUBVERSION "1"
2020

2121
#define PG_VERFILE "PG_VERSION"
2222

src/tools/RELEASE_CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ register.txt
55
doc/Machine-specific FAQ's
66
doc/TODO
77
doc/bug.template
8-
update include/version.h after release
8+
update include/version.h.in after release
99
update backend/parser/scan.c and gram.c so flex/bison not necessary
1010
update pgaccess
1111
update odbc

0 commit comments

Comments
 (0)
0