summaryrefslogtreecommitdiff
path: root/systemd/nslcd_systemd.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-11-07 23:27:18 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-11-07 23:27:18 -0500
commit5aa7a4c451c1e425e7ce19c9c9e6024e6e7ec58d (patch)
treef940f914decd8a825f42e74c829a536cdd676a8f /systemd/nslcd_systemd.go
parent2229078ac359bc872ae69629239011506f490587 (diff)
fix import paths
Diffstat (limited to 'systemd/nslcd_systemd.go')
-rw-r--r--systemd/nslcd_systemd.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/systemd/nslcd_systemd.go b/systemd/nslcd_systemd.go
index 5589627..5d1fb6e 100644
--- a/systemd/nslcd_systemd.go
+++ b/systemd/nslcd_systemd.go
@@ -35,12 +35,12 @@ package nslcd_systemd
import (
"fmt"
"net"
- "nslcd/proto/server"
+ "lukeshu.com/git/go/libnslcd.git/proto/server"
"os"
"os/signal"
- sd "sd_daemon"
- "sd_daemon/logger"
- "sd_daemon/lsb"
+ sd "lukeshu.com/git/go/libsystemd.git/sd_daemon"
+ "lukeshu.com/git/go/libsystemd.git/sd_daemon/logger"
+ "lukeshu.com/git/go/libsystemd.git/sd_daemon/lsb"
"sync"
"syscall"
)