diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-16 13:54:06 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-16 13:54:06 +0530 |
commit | 1f3d9524ca64a07f419dd47840cdf84b32e9e857 (patch) | |
tree | 23382fda0d16e4985c3cdbdac445f5e96d7a4aae /cmd/redqctl/main.go | |
parent | e5c9c56ec5fa243206f65ff77bd0f10708a284a3 (diff) |
db/Account: PassHash -> Password
Diffstat (limited to 'cmd/redqctl/main.go')
-rw-r--r-- | cmd/redqctl/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/redqctl/main.go b/cmd/redqctl/main.go index e60ea85..ce77f77 100644 --- a/cmd/redqctl/main.go +++ b/cmd/redqctl/main.go @@ -38,7 +38,7 @@ func create(args []string, db *redqdb.SafeDB) { "The first name to associate with the account") f.StringVar(&ac.Info.LastName, "lname", "", "The last name to associate with the account") - f.StringVar(&ac.PassHash, "pass", "", + f.StringVar(&ac.Password, "pass", "", "The password to associate with the account") f.UintVar(&ac.Info.Level, "level", 0, "The level to associate with the account") |