diff options
author | Michael Adam <obnox@samba.org> | 2011-05-31 00:13:15 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-31 01:44:27 +0200 |
commit | 2e6f8f7bdadd4b6e8b8c9ff2adf3dc1275c50430 (patch) | |
tree | 7b614445f27c460ce7e4689369d714be3dc5f82e | |
parent | e1bad49f3e6490ac7ff28b7bf8ddb8fb1447c7bd (diff) | |
download | samba-2e6f8f7bdadd4b6e8b8c9ff2adf3dc1275c50430.tar.gz samba-2e6f8f7bdadd4b6e8b8c9ff2adf3dc1275c50430.tar.bz2 samba-2e6f8f7bdadd4b6e8b8c9ff2adf3dc1275c50430.zip |
s3:smbd/proto.h: add _SMBD_PROTO_H_ guard
-rw-r--r-- | source3/smbd/proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index 06ecf696c6..486ff33598 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -43,6 +43,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef _SMBD_PROTO_H_ +#define _SMBD_PROTO_H_ + /* The following definitions come from smbd/signing.c */ struct smbd_server_connection; @@ -1177,3 +1180,5 @@ void *avahi_start_register(TALLOC_CTX *mem_ctx, struct tevent_context *ev, /* The following definitions come from smbd/msg_idmap.c */ void msg_idmap_register_msgs(struct messaging_context *ctx); + +#endif /* _SMBD_PROTO_H_ */ |