diff options
author | Ganbold Tsagaankhuu <ganbold@FreeBSD.org> | 2009-03-18 03:56:26 +0000 |
---|---|---|
committer | Ganbold Tsagaankhuu <ganbold@FreeBSD.org> | 2009-03-18 03:56:26 +0000 |
commit | c78159ebbf06e880e5e2bfcef65f7dc35a95e838 (patch) | |
tree | 258909dc1ac41723896ca36d725f83716e87f926 /usr.sbin/sysinstall | |
parent | 577b9fa3f8f743c4afbc958087cc651ebec67483 (diff) |
Clear confirm password field first when adding new user.
PR: i386/132580
Reported by: ilgiz <ilgiz at reid.ru>
Approved by: kensmith
Notes
Notes:
svn path=/head/; revision=189955
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r-- | usr.sbin/sysinstall/user.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/sysinstall/user.c b/usr.sbin/sysinstall/user.c index 3bba68e00211..2ac2b8bd39a1 100644 --- a/usr.sbin/sysinstall/user.c +++ b/usr.sbin/sysinstall/user.c @@ -698,6 +698,7 @@ userAddUser(dialogMenuItem *self) CLEAR(ugroup); CLEAR(gecos); CLEAR(passwd); + CLEAR(confpasswd); CLEAR(umemb); CLEAR(homedir); CLEAR(shell); |