Fix bug introduced by removing pointer indirection.

This commit is contained in:
John Beisley
2013-09-29 16:09:10 +01:00
parent c86636d636
commit 33980ebacf
2 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ func displayDevice(indent indentLevel, device *goupnp.Device) {
if srv.ServiceType == goupnp.ServiceTypeWANPPPConnection {
results, err := goupnp.PerformSoapAction(goupnp.ServiceTypeWANPPPConnection, "GetExternalIPAddress", &srv.ControlURL.URL, nil)
if err != nil {
fmt.Println(err)
fmt.Println("Error calling GetExternalIPAddress:", err)
} else {
fmt.Println(results)
}