]> Cypherpunks repositories - gostls13.git/commitdiff
os: fixed PathListSeparator to ';' for windows.
authorYasuhiro Matsumoto <mattn.jp@gmail.com>
Fri, 24 Jun 2011 05:00:59 +0000 (15:00 +1000)
committerAlex Brainman <alex.brainman@gmail.com>
Fri, 24 Jun 2011 05:00:59 +0000 (15:00 +1000)
Fixed issue 1992

R=golang-dev, alex.brainman
CC=golang-dev
https://golang.org/cl/4661047

src/pkg/os/path_windows.go

index 8740a9e61380691fa359884ab07e5e48431e4662..61f2ca59ff41cd2321fe1cae2cfa64f8907a7dcf 100644 (file)
@@ -6,7 +6,7 @@ package os
 
 const (
        PathSeparator     = '\\' // OS-specific path separator
-       PathListSeparator = ':'  // OS-specific path list separator
+       PathListSeparator = ';'  // OS-specific path list separator
 )
 
 // IsPathSeparator returns true if c is a directory separator character.