diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-05-18 03:36:45 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-05-18 03:36:45 +0000 |
commit | 3b382d1ae3be1250d9642a2cffb9e18e11a9cdbd (patch) | |
tree | c49ecdfd72ba59b320cc171490abf5609756819f /src/port/path.c | |
parent | 4307ca2a4073229a1d323edb53d56c049f952fce (diff) |
Clean up some relative path install issues with Claudio's help.
Diffstat (limited to 'src/port/path.c')
-rw-r--r-- | src/port/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/path.c b/src/port/path.c index f5fccca2787..565f496173a 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/path.c,v 1.8 2004/05/17 14:35:34 momjian Exp $ + * $PostgreSQL: pgsql/src/port/path.c,v 1.9 2004/05/18 03:36:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -234,7 +234,7 @@ relative_path(const char *path1, const char *path2) (!isalpha(*path2) || !path2[1] == ':')) return false; if ((!isalpha(*path1) || !path1[1] == ':') && - (isalpha(*path2) && path2[1] == ':') + (isalpha(*path2) && path2[1] == ':')) return false; if (isalpha(*path1) && path1[1] == ':' && isalpha(*path2) && path2[1] == ':') |