diff options
-rw-r--r-- | source3/smbd/proto.h | 2 | ||||
-rw-r--r-- | source3/smbd/server.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index b25ef7b159..ea2f022de1 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -961,8 +961,6 @@ void delete_and_reload_printers(struct tevent_context *ev, bool reload_services(struct smbd_server_connection *sconn, bool (*snumused) (struct smbd_server_connection *, int), bool test); -NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx, - uint32_t msg_type, DATA_BLOB* data); /* The following definitions come from smbd/server_exit.c */ diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 0b54bc7064..bafd493f11 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -194,8 +194,8 @@ static void msg_inject_fault(struct messaging_context *msg, } #endif /* DEVELOPER */ -NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx, - uint32_t msg_type, DATA_BLOB* data) +static NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx, + uint32_t msg_type, DATA_BLOB* data) { NTSTATUS status; struct smbd_parent_context *parent = am_parent; |