summaryrefslogtreecommitdiff
path: root/source3/auth/proto.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-05-30 23:57:23 +0200
committerMichael Adam <obnox@samba.org>2011-05-31 01:44:27 +0200
commit9cc1410718ae16bd30a7aa24878901dd70c19f75 (patch)
treebb50574307ad96819da8e41b6a1e1cec4b708431 /source3/auth/proto.h
parent1b7077204d30c4151662cf2f4547bf22baaae6fe (diff)
downloadsamba-9cc1410718ae16bd30a7aa24878901dd70c19f75.tar.gz
samba-9cc1410718ae16bd30a7aa24878901dd70c19f75.tar.bz2
samba-9cc1410718ae16bd30a7aa24878901dd70c19f75.zip
s3:auth/proto.h: add _AUTH_PROTO_H_ guard
Diffstat (limited to 'source3/auth/proto.h')
-rw-r--r--source3/auth/proto.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/auth/proto.h b/source3/auth/proto.h
index 9ba06475d0..46846ac907 100644
--- a/source3/auth/proto.h
+++ b/source3/auth/proto.h
@@ -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_ */