1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-29 02:50:28 +03:00

s3:auth/proto.h: add _AUTH_PROTO_H_ guard

This commit is contained in:
Michael Adam 2011-05-30 23:57:23 +02:00
parent 1b7077204d
commit 9cc1410718

View File

@ -30,6 +30,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _AUTH_PROTO_H_
#define _AUTH_PROTO_H_
/* The following definitions come from auth/auth.c */
NTSTATUS smb_register_auth(int version, const char *name, auth_init_function init);
@ -301,3 +304,5 @@ NTSTATUS make_session_info_krb5(TALLOC_CTX *mem_ctx,
bool mapped_to_guest, bool username_was_mapped,
DATA_BLOB *session_key,
struct auth_serversupplied_info **session_info);
#endif /* _AUTH_PROTO_H_ */