diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-07-07 06:44:50 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-07-07 06:44:50 +0000 |
commit | 1c3c9952210346aff1138a4417ff3ceff3ecd9c3 (patch) | |
tree | ede8916417957960f27c06d57225de2f1f38bd9e | |
parent | cd41846aa541ed19b5809c5de311426069e60605 (diff) | |
download | samba-1c3c9952210346aff1138a4417ff3ceff3ecd9c3.tar.gz samba-1c3c9952210346aff1138a4417ff3ceff3ecd9c3.tar.bz2 samba-1c3c9952210346aff1138a4417ff3ceff3ecd9c3.zip |
You can't dump_data() a function pointer...
Andrew Bartlett
(This used to be commit 4f7b2f51b071ee02b9a2ac7decd9fa7d9e078c1a)
-rw-r--r-- | source3/smbd/chgpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/chgpasswd.c b/source3/smbd/chgpasswd.c index 12e38f2a65..044cecb9fb 100644 --- a/source3/smbd/chgpasswd.c +++ b/source3/smbd/chgpasswd.c @@ -921,7 +921,7 @@ BOOL check_plaintext_password(char *user, char *old_passwd, DEBUG(100, ("check_plaintext_password: old_ntpw \n")); dump_data(100, old_ntpw, 16); DEBUG(100, ("check_plaintext_password: lanman_passwd \n")); - dump_data(100, pdb_get_lanman_passwd, 16); + dump_data(100, pdb_get_lanman_passwd(sampass), 16); DEBUG(100, ("check_plaintext_password: old_pw\n")); dump_data(100, old_pw, 16); #endif |