Add blank line to new canonicalize_path file, which handles "a b\" properly.
authorBruce Momjian <bruce@momjian.us>
Mon, 12 Jul 2004 19:27:31 +0000 (19:27 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 12 Jul 2004 19:27:31 +0000 (19:27 +0000)
src/port/path.c

index b9958acb746ec714524c6a0f589260712ac7bbf0..aaecf33f741f7f72b4aac81717fac89705714245 100644 (file)
@@ -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].