aboutsummaryrefslogtreecommitdiff
path: root/src/port/path.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-07-12 19:27:31 +0000
committerBruce Momjian <bruce@momjian.us>2004-07-12 19:27:31 +0000
commit15c8fd70e82b654e7a036f4626d9396dd54789a4 (patch)
treed4605584616b334b79bece9feba75bbd36d0b3bd /src/port/path.c
parent5ee0a8dcb68a6443f37ab719471d35c8ae8b52af (diff)
downloadpostgresql-15c8fd70e82b654e7a036f4626d9396dd54789a4.tar.gz
postgresql-15c8fd70e82b654e7a036f4626d9396dd54789a4.zip
Add blank line to new canonicalize_path file, which handles "a b\" properly.
Diffstat (limited to 'src/port/path.c')
-rw-r--r--src/port/path.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/path.c b/src/port/path.c
index b9958acb746..aaecf33f741 100644
--- a/src/port/path.c
+++ b/src/port/path.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/path.c,v 1.24 2004/07/12 19:15:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/port/path.c,v 1.25 2004/07/12 19:27:31 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -106,6 +106,7 @@ canonicalize_path(char *path)
if (*p == '\\')
*p = '/';
}
+
/* In Win32, if you do:
* prog.exe "a b" "\c\d\"
* the system will pass \c\d" as argv[2].