diff options
-rw-r--r-- | source3/lib/messages_local.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/lib/messages_local.c b/source3/lib/messages_local.c index 0da05466a2..a58c7eb95f 100644 --- a/source3/lib/messages_local.c +++ b/source3/lib/messages_local.c @@ -2,17 +2,17 @@ Unix SMB/CIFS implementation. Samba internal messaging functions Copyright (C) 2007 by Volker Lendecke - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -21,7 +21,7 @@ @defgroup messages Internal messaging framework @{ @file messages.c - + @brief Module for internal messaging between Samba daemons. The idea is that if a part of Samba wants to do communication with @@ -145,7 +145,7 @@ static TDB_DATA message_key_pid(TALLOC_CTX *mem_ctx, struct server_id pid) key = talloc_asprintf(talloc_tos(), "PID/%s", procid_str_static(&pid)); SMB_ASSERT(key != NULL); - + kbuf.dptr = (uint8 *)key; kbuf.dsize = strlen(key)+1; return kbuf; @@ -371,7 +371,7 @@ static NTSTATUS messaging_tdb_send(struct messaging_context *msg_ctx, if (!NT_STATUS_IS_OK(status)) { goto done; } - + status = message_notify(pid); if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_HANDLE)) { |