mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Standard pgindent run for 8.1.
This commit is contained in:
@ -11,7 +11,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/port/dynloader/linux.c,v 1.30 2004/12/31 22:00:32 pgsql Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/port/dynloader/linux.c,v 1.31 2005/10/15 02:49:23 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -38,8 +38,8 @@ pg_dlopen(char *filename)
|
||||
static int dl_initialized = 0;
|
||||
|
||||
/*
|
||||
* initializes the dynamic loader with the executable's pathname.
|
||||
* (only needs to do this the first time pg_dlopen is called.)
|
||||
* initializes the dynamic loader with the executable's pathname. (only
|
||||
* needs to do this the first time pg_dlopen is called.)
|
||||
*/
|
||||
if (!dl_initialized)
|
||||
{
|
||||
@ -60,9 +60,8 @@ pg_dlopen(char *filename)
|
||||
return NULL;
|
||||
|
||||
/*
|
||||
* If undefined symbols: try to link with the C and math libraries!
|
||||
* This could be smarter, if the dynamic linker was able to handle
|
||||
* shared libs!
|
||||
* If undefined symbols: try to link with the C and math libraries! This
|
||||
* could be smarter, if the dynamic linker was able to handle shared libs!
|
||||
*/
|
||||
if (dld_undefined_sym_count > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user