The branch, master has been updated
       via  f25a5c9 Fix a few small spelling mistakes in DEBUG messages to 
reduce confusion for those trying to debug stuff.
      from  5709dec vfs_commit: set the fd on open before calling SMB_VFS_FSTAT

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit f25a5c9e84e802bc7005d6bd400cbf784fb30fdf
Author: Richard Sharpe <rsha...@samba.org>
Date:   Wed Oct 7 17:19:38 2015 -0700

    Fix a few small spelling mistakes in DEBUG messages to reduce confusion
    for those trying to debug stuff.
    
    Signed-off-by: Richard Sharpe <rsha...@samba.org>
    Reviewed-by: Ira Cooper <i...@samba.org>
    
    Autobuild-User(master): Richard Sharpe <sha...@samba.org>
    Autobuild-Date(master): Thu Oct  8 08:48:06 CEST 2015 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 source3/smbd/server.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 7b2b055..ca9fb9e 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -705,7 +705,7 @@ static bool smbd_open_one_socket(struct smbd_parent_context 
*parent,
                               ifss,
                               true);
        if (s->fd == -1) {
-               DEBUG(0,("smbd_open_once_socket: open_socket_in: "
+               DEBUG(0,("smbd_open_one_socket: open_socket_in: "
                        "%s\n", strerror(errno)));
                TALLOC_FREE(s);
                /*
@@ -723,7 +723,7 @@ static bool smbd_open_one_socket(struct smbd_parent_context 
*parent,
        set_blocking(s->fd, False);
 
        if (listen(s->fd, SMBD_LISTEN_BACKLOG) == -1) {
-               DEBUG(0,("open_sockets_smbd: listen: "
+               DEBUG(0,("smbd_open_one_socket: listen: "
                        "%s\n", strerror(errno)));
                        close(s->fd);
                TALLOC_FREE(s);
@@ -736,7 +736,7 @@ static bool smbd_open_one_socket(struct smbd_parent_context 
*parent,
                               smbd_accept_connection,
                               s);
        if (!s->fde) {
-               DEBUG(0,("open_sockets_smbd: "
+               DEBUG(0,("smbd_open_one_socket: "
                         "tevent_add_fd: %s\n",
                         strerror(errno)));
                close(s->fd);


-- 
Samba Shared Repository

Reply via email to