'extern char *pg_pathname' in these files fails to agree with

postgres.c's declaration of 'char pg_pathname[...]'.  I dunno when these
ports were last used, but they are sure broken now...
This commit is contained in:
Tom Lane 1999-10-25 02:31:47 +00:00
parent c4c8e812b4
commit 8a17ed6335
3 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@
#ifdef PRE_BSDI_2_1
#include "postgres.h"
extern char *pg_pathname;
extern char pg_pathname[];
void *
pg_dlopen(char *filename)

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/linux.c,v 1.15 1999/07/17 20:17:31 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/linux.c,v 1.16 1999/10/25 02:31:47 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -21,7 +21,7 @@
#endif
#ifdef NOT_USED
extern char *pg_pathname;
extern char pg_pathname[];
void *
pg_dlopen(char *filename)

View File

@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.9 1999/07/17 20:17:31 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/ultrix4.c,v 1.10 1999/10/25 02:31:47 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -19,7 +19,7 @@
#include "port-protos.h"
#include "utils/dynamic_loader.h"
extern char *pg_pathname;
extern char pg_pathname[];
void *
pg_dlopen(char *filename)