mirror of
https://github.com/mumble-voip/grumble.git
synced 2025-12-20 14:20:00 -08:00
Fix certificate error message
This commit is contained in:
parent
eb4c442be0
commit
f25751d1aa
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ func NewTLSListener(port int) (rl *tls.Listener) {
|
||||||
// Load the certificate
|
// Load the certificate
|
||||||
pemBytes, err := ioutil.ReadFile("grumble.crt")
|
pemBytes, err := ioutil.ReadFile("grumble.crt")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Failed to read server.crt:", err)
|
log.Printf("Failed to read server.crt: %s", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue