[SCM] Samba Shared Repository - branch master updated

David Disseldorp ddiss at samba.org
Wed Mar 5 08:32:03 MST 2014


The branch, master has been updated
       via  7a53bb9 rpc_server: change unsupported pipe error
      from  5bd47bb dns: Extend tests for records with another type

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


- Log -----------------------------------------------------------------
commit 7a53bb964166a3091d8013041a1cb3389b999863
Author: David Disseldorp <ddiss at samba.org>
Date:   Wed Mar 5 13:37:26 2014 +0100

    rpc_server: change unsupported pipe error
    
    smbd currently prints the following level 0 error when a client attempts
    to connect to an unsupported named pipe (e.g. browser):
      ERROR! 'browser' is not a registred pipe
    
    This change reduces the severity of the error (0->2) and fixes a couple
    of typos.
    
    Signed-off-by: David Disseldorp <ddiss at samba.org>
    Reviewed-by: Andreas Schneider <asn at samba.org>
    
    Autobuild-User(master): David Disseldorp <ddiss at samba.org>
    Autobuild-Date(master): Wed Mar  5 16:31:42 CET 2014 on sn-devel-104

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

Summary of changes:
 source3/rpc_server/srv_pipe_hnd.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c
index a05fafd..63a5fcd 100644
--- a/source3/rpc_server/srv_pipe_hnd.c
+++ b/source3/rpc_server/srv_pipe_hnd.c
@@ -98,11 +98,10 @@ NTSTATUS np_open(TALLOC_CTX *mem_ctx, const char *name,
 
 		break;
 	case RPC_SERVICE_MODE_EMBEDDED:
-		/* Check if we this daemon handles this pipe */
+		/* Check if we handle this pipe internally */
 		ok = is_known_pipename(name, &syntax);
 		if (!ok) {
-			DEBUG(0, ("ERROR! '%s' is not a registred pipe!\n",
-				  name));
+			DEBUG(2, ("'%s' is not a registered pipe!\n", name));
 			talloc_free(handle);
 			return NT_STATUS_OBJECT_NAME_NOT_FOUND;
 		}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list