Commit 0a2b9f9c authored by Bruce Momjian's avatar Bruce Momjian

Rename function to be less win32 specific.

parent 1a273556
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.3 2004/04/30 20:23:28 momjian Exp $ * $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.4 2004/05/01 01:34:47 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -17,26 +17,32 @@ ...@@ -17,26 +17,32 @@
static char tzdir[MAXPGPATH]; static char tzdir[MAXPGPATH];
static int done_tzdir = 0; static int done_tzdir = 0;
char *pgwin32_TZDIR(void) { char *
pg_TZDIR(void)
{
char *p; char *p;
if (done_tzdir) if (done_tzdir)
return tzdir; return tzdir;
#ifndef WIN32 #ifndef WIN32
StrNCpy(tzdir, PGDATADIR, MAXPGPATH); StrNCpy(tzdir, PGDATADIR, MAXPGPATH);
#else #else
if (GetModuleFileName(NULL,tzdir,MAXPGPATH) == 0) if (GetModuleFileName(NULL, tzdir, MAXPGPATH) == 0)
return NULL; return NULL;
#endif #endif
canonicalize_path(tzdir); canonicalize_path(tzdir);
#if 0
if ((p = last_path_separator(tzdir)) == NULL) if ((p = last_path_separator(tzdir)) == NULL)
return NULL; return NULL;
else else
*p = '\0'; *p = '\0';
#endif
strcat(tzdir,"/timezone"); strcat(tzdir, "/timezone");
puts(tzdir);
done_tzdir=1; done_tzdir = 1;
return tzdir; return tzdir;
} }
...@@ -6,6 +6,6 @@ ...@@ -6,6 +6,6 @@
#define NOID #define NOID
#define TZDIR pgwin32_TZDIR() #define TZDIR pg_TZDIR()
char *pgwin32_TZDIR(void); char *pg_TZDIR(void);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment