From 192ce467a808aca91c0556861be676fd06b986b1 Mon Sep 17 00:00:00 2001 From: Vincent Vanackere Date: Thu, 24 Jul 2014 13:07:31 +0200 Subject: Switch asn1-ber dependency to "github.com/vanackere/asn1-ber" --- README | 2 +- bind.go | 2 +- conn.go | 2 +- control.go | 2 +- debug.go | 2 +- filter.go | 2 +- filter_test.go | 2 +- ldap.go | 2 +- modify.go | 2 +- search.go | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README b/README index edb54de..8987bcb 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ Basic LDAP v3 functionality for the GO programming language. Required Librarys: - github.com/johnweldon/asn1-ber + github.com/vanackere/asn1-ber Working: Connecting to LDAP server diff --git a/bind.go b/bind.go index 821e20b..07417fe 100644 --- a/bind.go +++ b/bind.go @@ -7,7 +7,7 @@ package ldap import ( "errors" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) func (l *Conn) Bind(username, password string) error { diff --git a/conn.go b/conn.go index 903df01..ed64b24 100644 --- a/conn.go +++ b/conn.go @@ -11,7 +11,7 @@ import ( "net" "sync" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) const ( diff --git a/control.go b/control.go index 9359756..e8022ba 100644 --- a/control.go +++ b/control.go @@ -7,7 +7,7 @@ package ldap import ( "fmt" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) const ( diff --git a/debug.go b/debug.go index 7c1a6f5..e6edfd4 100644 --- a/debug.go +++ b/debug.go @@ -3,7 +3,7 @@ package ldap import ( "log" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) // debbuging type diff --git a/filter.go b/filter.go index cac12a0..b3e4a97 100644 --- a/filter.go +++ b/filter.go @@ -8,7 +8,7 @@ import ( "errors" "fmt" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) const ( diff --git a/filter_test.go b/filter_test.go index 9e83195..0a63949 100644 --- a/filter_test.go +++ b/filter_test.go @@ -3,7 +3,7 @@ package ldap import ( "testing" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) type compileTest struct { diff --git a/ldap.go b/ldap.go index 0a879f2..08c01e8 100644 --- a/ldap.go +++ b/ldap.go @@ -9,7 +9,7 @@ import ( "fmt" "io/ioutil" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) // LDAP Application Codes diff --git a/modify.go b/modify.go index 55bce86..8c0e852 100644 --- a/modify.go +++ b/modify.go @@ -33,7 +33,7 @@ import ( "errors" "log" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) const ( diff --git a/search.go b/search.go index 3448c95..d0ce3f5 100644 --- a/search.go +++ b/search.go @@ -64,7 +64,7 @@ import ( "fmt" "strings" - "github.com/johnweldon/asn1-ber" + "github.com/vanackere/asn1-ber" ) const ( -- cgit v1.2.3