From ba03b2acd8202e58e92eff28ffc0b4d1756fff8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Lu=CC=88tke?= Date: Thu, 19 Jan 2012 13:17:26 -0500 Subject: [PATCH] Updates for weekly release --- authrequest.go | 2 +- verify.go | 4 ++-- xrds.go | 2 +- yadis.go | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/authrequest.go b/authrequest.go index 8286662..b9fe2d9 100644 --- a/authrequest.go +++ b/authrequest.go @@ -8,7 +8,7 @@ import ( "errors" "strings" "io" - "url" + "net/url" ) const ( diff --git a/verify.go b/verify.go index 99dd805..d11bea0 100644 --- a/verify.go +++ b/verify.go @@ -7,10 +7,10 @@ package openid import ( "errors" "log" - "http" + "net/http" "regexp" "bytes" - "url" + "net/url" ) // Verify that the url given match a successfull authentication diff --git a/xrds.go b/xrds.go index f4157a8..4a4a199 100644 --- a/xrds.go +++ b/xrds.go @@ -5,7 +5,7 @@ package openid import ( - "xml" + "encoding/xml" "io" "strings" ) diff --git a/yadis.go b/yadis.go index 4f9f548..d02311f 100644 --- a/yadis.go +++ b/yadis.go @@ -6,8 +6,8 @@ package openid import ( "errors" - "http" - "url" + "net/http" + "net/url" "io" "io/ioutil" "bytes"