target: Add COM0 and LPT0 as reservedNames on Windows
authormagikstm <myskina@gmail.com>
Wed, 4 Jan 2017 10:52:20 +0000 (05:52 -0500)
committerAnthony Fok <foka@debian.org>
Fri, 6 Jan 2017 09:32:49 +0000 (02:32 -0700)
Fixes #2883

target/htmlredirect.go

index 81a15fa737488b7ade95a5bc38689faeaa0a7ad2..7444dd42be7e2ea03d3f454ad86a947f6239dcbc 100644 (file)
@@ -70,7 +70,7 @@ func (h *HTMLRedirectAlias) Translate(alias string) (aliasPath string, err error
        // See "Naming Files, Paths, and Namespaces" on MSDN
        // https://msdn.microsoft.com/en-us/library/aa365247%28v=VS.85%29.aspx?f=255&MSPPError=-2147217396
        msgs := []string{}
-       reservedNames := []string{"CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9"}
+       reservedNames := []string{"CON", "PRN", "AUX", "NUL", "COM0", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9", "LPT0", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9"}
 
        if strings.ContainsAny(alias, ":*?\"<>|") {
                msgs = append(msgs, fmt.Sprintf("Alias \"%s\" contains invalid characters on Windows: : * ? \" < > |", originalAlias))