Browse Source

fix gerCertPool() on windows

Darien Raymond 6 years ago
parent
commit
cc513c1002
1 changed files with 1 additions and 1 deletions
  1. 1 1
      transport/internet/tls/config_windows.go

+ 1 - 1
transport/internet/tls/config_windows.go

@@ -10,5 +10,5 @@ func (c *Config) getCertPool() (*x509.CertPool, error) {
 		return c.loadSelfCertPool()
 	}
 
-	return nil
+	return nil, nil
 }