diff options
author | Andreas Schneider <asn@samba.org> | 2017-08-18 16:08:46 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2017-08-23 13:16:20 +0200 |
commit | 7a554ee7dcefdff599ebc6fbf4e128b33ffccf29 (patch) | |
tree | 8eae1e786330093ea44dff998958cb3ad38a12d1 /source3/include/proto.h | |
parent | 95e30b081f273f2d156792577179c5220c0a10cc (diff) | |
download | samba-7a554ee7dcefdff599ebc6fbf4e128b33ffccf29.tar.gz |
s3:libsmb: Pass domain to remote_password_change()
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12975
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlet <abartlet@samba.org>
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index c8f6c282b68..976f3f92156 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -823,7 +823,8 @@ bool get_dc_name(const char *domain, /* The following definitions come from libsmb/passchange.c */ -NTSTATUS remote_password_change(const char *remote_machine, const char *user_name, +NTSTATUS remote_password_change(const char *remote_machine, + const char *domain, const char *user_name, const char *old_passwd, const char *new_passwd, char **err_str); |