mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Fixed leftover hkexsh -> xs refs in xspasswd
This commit is contained in:
parent
8dbb10f324
commit
9b90c0558e
1 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
hkexsh "blitter.com/go/hkexsh"
|
||||
xs "blitter.com/go/xs"
|
||||
"github.com/jameskeane/bcrypt"
|
||||
)
|
||||
|
||||
|
@ -59,7 +59,7 @@ func main() {
|
|||
uname = userName
|
||||
|
||||
fmt.Printf("New Password:")
|
||||
ab, err := hkexsh.ReadPassword(int(os.Stdin.Fd()))
|
||||
ab, err := xs.ReadPassword(int(os.Stdin.Fd()))
|
||||
fmt.Printf("\r\n")
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
|
@ -68,7 +68,7 @@ func main() {
|
|||
newpw = string(ab)
|
||||
|
||||
fmt.Printf("Confirm:")
|
||||
ab, err = hkexsh.ReadPassword(int(os.Stdin.Fd()))
|
||||
ab, err = xs.ReadPassword(int(os.Stdin.Fd()))
|
||||
fmt.Printf("\r\n")
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
|
|
Loading…
Reference in a new issue