diff options
author | Günther Deschner <gd@samba.org> | 2011-03-19 00:46:41 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-30 01:13:07 +0200 |
commit | cd7e088ddf37cb9f516e3a9d94232fa1e91221cd (patch) | |
tree | fffb6b1b5fa7dedbdb127166b1075ac44e2c0b01 | |
parent | 2f36ef72256cf3c2e36ed759427af07effda1069 (diff) | |
download | samba-cd7e088ddf37cb9f516e3a9d94232fa1e91221cd.tar.gz samba-cd7e088ddf37cb9f516e3a9d94232fa1e91221cd.tar.bz2 samba-cd7e088ddf37cb9f516e3a9d94232fa1e91221cd.zip |
s3-proto: add some forward declarations.
Guenther
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index cf15a41f67..76694a346f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -123,6 +123,7 @@ NTSTATUS make_user_info_for_reply_enc(struct auth_usersupplied_info **user_info, const char *client_domain, DATA_BLOB lm_resp, DATA_BLOB nt_resp); bool make_user_info_guest(struct auth_usersupplied_info **user_info) ; +struct samu; NTSTATUS make_server_info_sam(struct auth_serversupplied_info **server_info, struct samu *sampass); NTSTATUS create_local_token(struct auth_serversupplied_info *server_info); @@ -133,6 +134,7 @@ NTSTATUS create_token_from_username(TALLOC_CTX *mem_ctx, const char *username, struct security_token **token); bool user_in_group_sid(const char *username, const struct dom_sid *group_sid); bool user_in_group(const char *username, const char *groupname); +struct passwd; NTSTATUS make_server_info_pw(struct auth_serversupplied_info **server_info, char *unix_username, struct passwd *pwd); |