]> granicus.if.org Git - postgresql/commit
Fixes:
authorMarc G. Fournier <scrappy@hub.org>
Wed, 31 Jul 1996 02:19:23 +0000 (02:19 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Wed, 31 Jul 1996 02:19:23 +0000 (02:19 +0000)
commita05ed5bc11ceef1ab98bd6cfdb7532266256c98c
treea91e407af845421429db765fe47762157201d0ce
parent4477b6f6c262a828e21e6cc5f47b61a3e8032051
Fixes:

In postgres95/src/backend/nodes/readfuncs, lines 1188 and 1189,
local_node->relname is taken to point to a NameType, while its
defined as a pointer to char. Both the casting to Name and the
call of namestrcpy should, IMHO, be changed appropriately (first
patch).

As far as I could see from the Linux signal header file,
a signal handler is declared as

        typedef void (*__sighandler_t)(int);

Few changes to postgres95/src/backend/storage/lmgr/proc.c seem
appropriate to comply with this.

Finally, postgres95/src/bin/pg_version/pg_version.c defines
a function GetDataHome (by default, returning an integer)
and returns NULL in the function, which isn't an integer...

Submitted by:  ernst.molitor@uni-bonn.de
src/backend/nodes/readfuncs.c
src/backend/storage/lmgr/proc.c
src/bin/pg_version/pg_version.c