diff options
Diffstat (limited to 'src/backend/utils/fmgr/dfmgr.c')
-rw-r--r-- | src/backend/utils/fmgr/dfmgr.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/backend/utils/fmgr/dfmgr.c b/src/backend/utils/fmgr/dfmgr.c index 4b625bfc7c5..7d9b79575fd 100644 --- a/src/backend/utils/fmgr/dfmgr.c +++ b/src/backend/utils/fmgr/dfmgr.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.25 1999/05/22 19:49:41 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.26 1999/05/25 16:12:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -237,14 +237,14 @@ void load_file(char *filename) { DynamicFileList *file_scanner, - *p; + *p; struct stat stat_buf; int done = 0; /* - * We need to do stat() in order to determine whether this is the - * same file as a previously loaded file; it's also handy so as to - * give a good error message if bogus file name given. + * We need to do stat() in order to determine whether this is the same + * file as a previously loaded file; it's also handy so as to give a + * good error message if bogus file name given. */ if (stat(filename, &stat_buf) == -1) elog(ERROR, "LOAD: could not open file '%s': %m", filename); @@ -292,4 +292,5 @@ trigger_dynamic(char *filename, char *funcname) return trigger_fn; } + #endif |