summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Weldon <johnweldon4@gmail.com>2014-04-16 03:02:01 +0200
committerJohn Weldon <johnweldon4@gmail.com>2014-04-16 03:02:01 +0200
commit6b7bf8da555e67d588ae8841ef67d28b9bcb0711 (patch)
tree38921b54964728405196d5a171d75183ae5c08a4
parentupdate references (diff)
downloadldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar
ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.gz
ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.bz2
ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.lz
ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.xz
ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.tar.zst
ldap-6b7bf8da555e67d588ae8841ef67d28b9bcb0711.zip
-rw-r--r--README2
-rw-r--r--bind.go2
-rw-r--r--conn.go2
-rw-r--r--control.go2
-rw-r--r--debug.go2
-rw-r--r--filter.go2
-rw-r--r--filter_test.go2
-rw-r--r--ldap.go2
-rw-r--r--modify.go2
-rw-r--r--search.go2
10 files changed, 10 insertions, 10 deletions
diff --git a/README b/README
index a6a7eff..edb54de 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
Basic LDAP v3 functionality for the GO programming language.
Required Librarys:
- github.com/SpruceHealth/asn1-ber
+ github.com/johnweldon/asn1-ber
Working:
Connecting to LDAP server
diff --git a/bind.go b/bind.go
index c529b14..821e20b 100644
--- a/bind.go
+++ b/bind.go
@@ -7,7 +7,7 @@ package ldap
import (
"errors"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
func (l *Conn) Bind(username, password string) error {
diff --git a/conn.go b/conn.go
index f1fadaa..71875b6 100644
--- a/conn.go
+++ b/conn.go
@@ -11,7 +11,7 @@ import (
"net"
"sync"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
const (
diff --git a/control.go b/control.go
index 9d81803..9359756 100644
--- a/control.go
+++ b/control.go
@@ -7,7 +7,7 @@ package ldap
import (
"fmt"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
const (
diff --git a/debug.go b/debug.go
index 02f9a7c..7c1a6f5 100644
--- a/debug.go
+++ b/debug.go
@@ -3,7 +3,7 @@ package ldap
import (
"log"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
// debbuging type
diff --git a/filter.go b/filter.go
index 27410f8..cac12a0 100644
--- a/filter.go
+++ b/filter.go
@@ -8,7 +8,7 @@ import (
"errors"
"fmt"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
const (
diff --git a/filter_test.go b/filter_test.go
index 1df4814..9e83195 100644
--- a/filter_test.go
+++ b/filter_test.go
@@ -3,7 +3,7 @@ package ldap
import (
"testing"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
type compileTest struct {
diff --git a/ldap.go b/ldap.go
index 12711b2..0a879f2 100644
--- a/ldap.go
+++ b/ldap.go
@@ -9,7 +9,7 @@ import (
"fmt"
"io/ioutil"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
// LDAP Application Codes
diff --git a/modify.go b/modify.go
index 244eeeb..55bce86 100644
--- a/modify.go
+++ b/modify.go
@@ -33,7 +33,7 @@ import (
"errors"
"log"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
const (
diff --git a/search.go b/search.go
index 4743c23..3448c95 100644
--- a/search.go
+++ b/search.go
@@ -64,7 +64,7 @@ import (
"fmt"
"strings"
- "github.com/SpruceHealth/asn1-ber"
+ "github.com/johnweldon/asn1-ber"
)
const (