mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Renamed go_login pkg to goutmp
This commit is contained in:
parent
22da88af7d
commit
f5a146255f
1 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,7 @@ import (
|
||||||
"runtime"
|
"runtime"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
"blitter.com/go/go_login"
|
"blitter.com/go/goutmp"
|
||||||
hkexsh "blitter.com/go/hkexsh"
|
hkexsh "blitter.com/go/hkexsh"
|
||||||
"blitter.com/go/hkexsh/spinsult"
|
"blitter.com/go/hkexsh/spinsult"
|
||||||
"github.com/kr/pty"
|
"github.com/kr/pty"
|
||||||
|
@ -300,9 +300,9 @@ func main() {
|
||||||
log.Println("[Command complete]")
|
log.Println("[Command complete]")
|
||||||
} else if rec.op[0] == 's' {
|
} else if rec.op[0] == 's' {
|
||||||
log.Println("[Running shell]")
|
log.Println("[Running shell]")
|
||||||
utmpx := go_login.Put_utmp(string(rec.who), string("todo.example.org"))
|
utmpx := goutmp.Put_utmp(string(rec.who), string("todo.example.org"))
|
||||||
defer func() { go_login.Unput_utmp(utmpx) }()
|
defer func() { goutmp.Unput_utmp(utmpx) }()
|
||||||
go_login.Put_lastlog_entry("hkexsh", string(rec.who), string("todo.example.org"))
|
goutmp.Put_lastlog_entry("hkexsh", string(rec.who), string("todo.example.org"))
|
||||||
runShellAs(string(rec.who), string(rec.cmd), true, conn, chaffEnabled)
|
runShellAs(string(rec.who), string(rec.cmd), true, conn, chaffEnabled)
|
||||||
// Returned hopefully via an EOF or exit/logout;
|
// Returned hopefully via an EOF or exit/logout;
|
||||||
// Clear current op so user can enter next, or EOF
|
// Clear current op so user can enter next, or EOF
|
||||||
|
|
Loading…
Reference in a new issue