diff options
author | Herb Lewis <herb@samba.org> | 1998-11-12 23:49:32 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 1998-11-12 23:49:32 +0000 |
commit | 48af29bcc9e8094de6ba057a52dbae3c80ea7a05 (patch) | |
tree | 83c531f6d7020e54b4180e3d1fffa998deedb347 /source/include | |
parent | 275d22f81c9b8a04dd11ccc8733c62f48f270965 (diff) | |
download | samba-48af29bcc9e8094de6ba057a52dbae3c80ea7a05.tar.gz samba-48af29bcc9e8094de6ba057a52dbae3c80ea7a05.tar.xz samba-48af29bcc9e8094de6ba057a52dbae3c80ea7a05.zip |
Removed code that used printf/fprintf in password changin libraries.
Now passes strings instead.
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/proto.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source/include/proto.h b/source/include/proto.h index 547458c07d4..aa2d3b64862 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -512,7 +512,8 @@ char *get_nt_error_msg(uint32 nt_code); /*The following definitions come from libsmb/passchange.c */ BOOL remote_password_change(const char *remote_machine, const char *user_name, - const char *old_passwd, const char *new_passwd); + const char *old_passwd, const char *new_passwd, + char *err_str, size_t err_str_len); /*The following definitions come from libsmb/pwd_cache.c */ @@ -1223,7 +1224,9 @@ struct passdb_ops *file_initialize_password_db(void); BOOL local_password_change(char *user_name, BOOL trust_account, BOOL add_user, BOOL enable_user, BOOL disable_user, BOOL set_no_password, - char *new_passwd); + char *new_passwd, + char *err_str, size_t err_str_len, + char *msg_str, size_t msg_str_len); /*The following definitions come from passdb/smbpassfile.c */ |