projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ee0a8d
)
Add blank line to new canonicalize_path file, which handles "a b\" properly.
author
Bruce Momjian
<bruce@momjian.us>
Mon, 12 Jul 2004 19:27:31 +0000
(19:27 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Mon, 12 Jul 2004 19:27:31 +0000
(19:27 +0000)
src/port/path.c
patch
|
blob
|
blame
|
history
diff --git
a/src/port/path.c
b/src/port/path.c
index b9958acb746ec714524c6a0f589260712ac7bbf0..aaecf33f741f7f72b4aac81717fac89705714245 100644
(file)
--- a/
src/port/path.c
+++ b/
src/port/path.c
@@
-8,7
+8,7
@@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/path.c,v 1.2
4 2004/07/12 19:15:14
momjian Exp $
+ * $PostgreSQL: pgsql/src/port/path.c,v 1.2
5 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].